/* Font Google Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background-color: #f4f7f6; /* Putih sedikit abu (Clean) */
    font-family: 'Poppins', sans-serif;
}

/* Sidebar Navy Elegan */
.sidebar {
    background-color: #0d1b2a; /* Navy Gelap */
    min-height: 100vh;
    color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    color: #b0bec5;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: #1b263b; /* Navy lebih terang sedikit */
    color: #ffffff;
    font-weight: 500;
}

.sidebar h4 {
    color: #ffffff;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid #1b263b;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Bayangan halus */
    background: #fff;
}

.card-header {
    background-color: #fff;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    color: #0d1b2a; /* Text Navy */
    padding: 20px;
}

/* Tabel Header Navy */
.table thead th {
    background-color: #0d1b2a;
    color: #ffffff;
    border: none;
    font-weight: 500;
}

.btn-primary-navy {
    background-color: #0d1b2a;
    color: #fff;
    border: none;
}
.btn-primary-navy:hover {
    background-color: #1b263b;
    color: #fff;
}