/* Pastikan font sudah di-import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --accent: #ffc107;
    --bg-body: #f1f4f9;
    --glass: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Gradasi background yang modern */
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    min-height: 100vh;
    color: #2d3436;
}

/* Card Style Modern - Menambahkan bayangan yang lebih halus */
.card-custom {
    background: var(--glass);
    border: none;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Button Modern */
.btn-modern {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

/* Navbar */
.navbar-custom {
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Mobile Menu Mahasiswa */
.header-mhs {
    background: var(--primary);
    color: white;
    padding: 40px 0 80px 0;
    border-radius: 0 0 40px 40px;
    margin-bottom: -40px;
}

.menu-item {
    cursor: pointer;
    border: 2px solid transparent;
}

.menu-item:hover {
    border-color: var(--primary);
    background: #f8fbff;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Table Style */
.table thead th {
    background: #f8f9fa;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #636e72;
    border: none;
}