:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --light: #ecf0f1;
    --danger: #e74c3c;
}

body { font-family: 'Segoe UI', sans-serif; margin: 0; background: var(--light); color: #333; }
.container { padding: 20px; max-width: 1200px; margin: auto; }

/* Navbar Responsif */
nav { background: var(--primary); color: white; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
nav h1 { font-size: 1.2rem; margin: 0; }

/* Card System */
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 20px; }

/* Table Responsif */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
table th, table td { padding: 12px; border-bottom: 1px solid #ddd; text-align: left; }
table th { background: #f8f9fa; }

/* Form Design */
input, select, textarea { width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
.btn { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-primary { background: var(--accent); color: white; }

@media (max-width: 600px) {
    nav { flex-direction: column; text-align: center; }
    .card { padding: 15px; }
}


/* Warna Status */
.status-pending { color: #f39c12; font-weight: bold; }
.status-disetujui { color: #27ae60; font-weight: bold; }
.status-ditolak { color: #e74c3c; font-weight: bold; }

/* Tambahan navigasi profil */
.profile-nav { display: flex; align-items: center; gap: 10px; }