* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* NAVIGASI */
nav {
    background-color: #0A2342;
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #C49A6C;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C49A6C;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo-img {
    height: 42px !important;
    width: 42px !important;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #C49A6C;
    color: #0A2342;
}

.btn-outline {
    border: 1px solid #C49A6C;
    color: #C49A6C !important;
}

.btn-outline:hover {
    background-color: #C49A6C;
    color: #0A2342 !important;
}

/* HERO BACKGROUND */
.hero-bg {
    background: linear-gradient(rgba(10, 35, 66, 0.75), rgba(10, 35, 66, 0.75)),
                url('../assets/images/background.jpg') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #C49A6C;
    margin-bottom: 0.5rem;
}

/* CARD & KONTEN */
.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border-left: 4px solid #28a745;
}

.card h2 {
    color: #0A2342;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #C49A6C;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-proses { background-color: #ffc107; color: #212529; }
.badge-setuju { background-color: #28a745; color: white; }
.badge-tolak { background-color: #dc3545; color: white; }

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FORM STYLE */
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
}
.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary { background-color: #0A2342; color: white; }
.btn-primary:hover { background-color: #051222; }
.btn-success { background-color: #28a745; color: white; }
.btn-danger { background-color: #dc3545; color: white; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.9rem; }

/* TABLE */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}
.table th, .table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.table th {
    background-color: #0A2342;
    color: white;
}

/* FOOTER */
footer {
    background-color: #0A2342;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 2px solid #C49A6C;
}

/* RESPONSIF */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 1.5rem; }
}

/* NOTIFIKASI */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-weight: 500;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* TOMBOL AKSI */
.btn-group {
    display: flex;
    gap: 0.3rem;
}

/* CARD STATUS */
.card-proses { background: #fff9e6; border-left: 4px solid #ffc107; }
.card-setuju { background: #f0f9f4; border-left: 4px solid #28a745; }
.card-tolak { background: #fdf2f2; border-left: 4px solid #dc3545; }

/* TABLE ADMIN */
.table-aksi {
    width: 180px;
    text-align: center;
}
