@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Warna Khas Universitas (Hijau Gelap) */
.bg-ugk { background-color: #1e4d2b !important; }
.text-ugk { color: #1e4d2b !important; }
.btn-ugk { background-color: #1e4d2b; color: #fff; border: none; }
.btn-ugk:hover { background-color: #15361e; color: #fff; }

/* Navbar */
.navbar { box-shadow: 0 4px 12px rgba(0,0,0,0.05); padding: 15px 0; }
.navbar-brand { font-weight: 700; letter-spacing: 0.5px; }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e4d2b 0%, #2e7d32 100%);
    color: white;
    padding: 60px 0 40px;
    border-radius: 0 0 30px 30px;
    margin-bottom: -40px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(30,77,43,0.2);
}

/* Card Modern */
.card-modern {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    background: #fff;
    transition: transform 0.2s ease;
}

/* Table Custom */
.table thead th {
    background-color: #f1f4f2;
    color: #1e4d2b;
    font-weight: 600;
    border-bottom: 2px solid #1e4d2b;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.table-hover tbody tr:hover { background-color: #f5fff7; }
.badge-custom { padding: 6px 10px; font-weight: 500; border-radius: 8px; }

/* Form Control */
.form-control, .form-select { border-radius: 8px; border: 1px solid #dee2e6; padding: 10px 15px; }
.form-control:focus, .form-select:focus { border-color: #1e4d2b; box-shadow: 0 0 0 0.25rem rgba(30,77,43,0.15); }