/* ============================================================
   assets/css/common.css
   CSS BERSAMA UNTUK SEMUA HALAMAN - VERSI DENGAN STANDARISASI FONT
   ============================================================ */

/* ============================================================
   1. RESET & BASE - DENGAN STANDARISASI FONT
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    background: #f8fafc !important;
    color: #1a1a2e !important;
    overflow-x: hidden !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

/* ============================================================
   2. TYPOGRAPHY - STANDARISASI UKURAN
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
}

h1 { font-size: 24px !important; font-weight: 700 !important; line-height: 1.3 !important; }
h2 { font-size: 20px !important; font-weight: 700 !important; line-height: 1.3 !important; }
h3 { font-size: 18px !important; font-weight: 600 !important; line-height: 1.4 !important; }
h4 { font-size: 16px !important; font-weight: 600 !important; line-height: 1.4 !important; }
h5 { font-size: 14px !important; font-weight: 600 !important; line-height: 1.5 !important; }
h6 { font-size: 13px !important; font-weight: 600 !important; line-height: 1.5 !important; }

p, span, div, a, li, td, th, label, input, select, textarea, button {
    font-family: 'Inter', sans-serif !important;
}

/* Text Size Utilities */
.text-xs { font-size: 10px !important; }
.text-sm { font-size: 11px !important; }
.text-md { font-size: 13px !important; }
.text-lg { font-size: 16px !important; }
.text-xl { font-size: 20px !important; }
.text-xxl { font-size: 24px !important; }

/* Small Tag */
small, .text-muted small, .small {
    font-size: 11px !important;
    font-family: 'Inter', sans-serif !important;
}

/* ============================================================
   3. COLORS - KONSISTEN
   ============================================================ */

.text-muted { color: #94a3b8 !important; }
.text-primary { color: #667eea !important; }
.text-success { color: #28a745 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }
.text-info { color: #17a2b8 !important; }
.text-secondary { color: #6c757d !important; }
.text-white { color: #ffffff !important; }
.text-dark { color: #1a1a2e !important; }

.bg-primary { background-color: #667eea !important; }
.bg-success { background-color: #28a745 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-info { background-color: #17a2b8 !important; }
.bg-secondary { background-color: #6c757d !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #343a40 !important; }
.bg-purple { background-color: #764ba2 !important; }
.bg-pink { background-color: #e83e8c !important; }
.bg-teal { background-color: #20c997 !important; }

/* ============================================================
   4. MAIN CONTENT - SIDEBAR LAYOUT
   ============================================================ */

.main-content {
    margin-left: 260px;
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    background: #f8fafc;
    padding: 0 24px 40px 24px;
}

.main-content.expanded {
    margin-left: 70px;
}

/* ============================================================
   5. CONTENT WRAPPER
   ============================================================ */

.content-wrapper {
    background: #f8fafc;
    padding: 20px 0 0 0;
    font-family: 'Inter', sans-serif !important;
}

.content-wrapper .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.content-wrapper .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.content-wrapper [class*="col-"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

/* ============================================================
   6. CARDS - DENGAN STANDARISASI FONT
   ============================================================ */

.card {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1) !important;
}

.card-header {
    border-radius: 12px 12px 0 0 !important;
    padding: 14px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-bottom: none !important;
}

.card-header h5,
.card-header .card-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.card-header .card-title i {
    margin-right: 8px;
}

.card-body {
    padding: 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.card-body p {
    font-size: 13px !important;
    font-family: 'Inter', sans-serif !important;
}

.card-footer {
    border-top: 1px solid #edf2f7 !important;
    padding: 12px 20px !important;
    background: transparent !important;
    border-radius: 0 0 12px 12px !important;
    font-family: 'Inter', sans-serif !important;
}

/* ============================================================
   7. SMALL BOX (STATISTIK CARDS)
   ============================================================ */

.small-box {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    padding: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100px !important;
    margin-bottom: 20px;
}

.small-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15) !important;
}

.small-box .inner h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 4px 0 !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
}

.small-box .inner p {
    font-size: 13px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    color: rgba(255,255,255,0.85) !important;
    font-family: 'Inter', sans-serif !important;
}

.small-box .icon {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 40px !important;
    color: rgba(255,255,255,0.12) !important;
}

.small-box .small-box-footer {
    display: block !important;
    padding: 8px 0 0 0 !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none !important;
}

.small-box .small-box-footer:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* Warna Small Box */
.small-box.bg-primary { background: #667eea !important; }
.small-box.bg-success { background: #28a745 !important; }
.small-box.bg-warning { background: #ffc107 !important; }
.small-box.bg-danger { background: #dc3545 !important; }
.small-box.bg-info { background: #17a2b8 !important; }
.small-box.bg-secondary { background: #6c757d !important; }
.small-box.bg-dark { background: #343a40 !important; }
.small-box.bg-purple { background: #764ba2 !important; }
.small-box.bg-pink { background: #e83e8c !important; }
.small-box.bg-teal { background: #20c997 !important; }

/* ============================================================
   8. PROGRESS BAR
   ============================================================ */

.progress-bar-custom {
    height: 8px !important;
    border-radius: 50px !important;
    background: #e9ecef !important;
    overflow: hidden !important;
    flex: 1;
    margin-left: 10px;
}

.progress-bar-custom .progress-fill {
    height: 100% !important;
    border-radius: 50px !important;
    transition: width 1s ease !important;
}

/* Progress Bar Warna */
.progress-fill.bg-primary { background: #667eea !important; }
.progress-fill.bg-success { background: #28a745 !important; }
.progress-fill.bg-warning { background: #ffc107 !important; }
.progress-fill.bg-danger { background: #dc3545 !important; }
.progress-fill.bg-info { background: #17a2b8 !important; }
.progress-fill.bg-secondary { background: #6c757d !important; }

/* ============================================================
   9. TABLES - STANDARISASI FONT
   ============================================================ */

.table {
    font-family: 'Inter', sans-serif !important;
}

.table th {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #64748b !important;
    border-bottom: 2px solid #e2e8f0 !important;
    padding: 8px 10px !important;
    background: #f8fafc !important;
}

.table td {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    vertical-align: middle !important;
    color: #1a1a2e !important;
    padding: 8px 10px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.table-bordered {
    border: 1px solid #e2e8f0 !important;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #e2e8f0 !important;
}

.table-hover tbody tr:hover {
    background: #f7fafc !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #f9fafb !important;
}

/* ============================================================
   10. BADGES - STANDARISASI FONT
   ============================================================ */

.badge {
    font-family: 'Inter', sans-serif !important;
}

.badge-kehadiran {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 2px 10px !important;
    border-radius: 50px !important;
}

.badge-status {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
}

.badge-status.sudah { background: #d4edda; color: #155724; }
.badge-status.belum { background: #f8d7da; color: #721c24; }
.badge-status.terlambat { background: #fff3cd; color: #856404; }
.badge-status.lengkap { background: #d4edda; color: #155724; }
.badge-status.jurnal-saja { background: #cce5ff; color: #004085; }
.badge-status.presensi-saja { background: #fff3cd; color: #856404; }
.badge-status.draft { background: #e2e3e5; color: #383d41; }
.badge-status.selesai { background: #d4edda; color: #155724; }

.badge-active {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    background: #28a745 !important;
    color: white !important;
}

.badge-inactive {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    background: #6c757d !important;
    color: white !important;
}

.badge-jenis {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    padding: 3px 10px !important;
    border-radius: 50px !important;
}

.badge-jenis.pulang_awal { background: #fff3cd; color: #856404; }
.badge-jenis.libur { background: #f8d7da; color: #721c24; }
.badge-jenis.acara { background: #d4edda; color: #155724; }
.badge-jenis.rapat { background: #cce5ff; color: #004085; }
.badge-jenis.lainnya { background: #e2e3e5; color: #383d41; }

.badge-edited {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    background: #ffc107 !important;
    color: #856404 !important;
    padding: 2px 8px !important;
    border-radius: 50px !important;
}

.badge-agenda {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    background: #ffc107 !important;
    color: #856404 !important;
    padding: 3px 12px !important;
    border-radius: 50px !important;
}

.badge-used {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    background: #ffc107 !important;
    color: #856404 !important;
    padding: 2px 10px !important;
    border-radius: 50px !important;
}

/* ============================================================
   11. BUTTONS - STANDARISASI FONT
   ============================================================ */

.btn {
    font-family: 'Inter', sans-serif !important;
}

.btn-sm {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
}

.btn-xs {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 10px !important;
    border-radius: 50px !important;
    padding: 3px 10px !important;
}

.btn-action {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    border-radius: 50px !important;
    padding: 4px 12px !important;
}

.btn-filter {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
}

.btn-outline-primary {
    border-color: #667eea !important;
    color: #667eea !important;
}
.btn-outline-primary:hover {
    background: #667eea !important;
    color: #fff !important;
}

.btn-outline-success {
    border-color: #28a745 !important;
    color: #28a745 !important;
}
.btn-outline-success:hover {
    background: #28a745 !important;
    color: #fff !important;
}

.btn-outline-danger {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}
.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: #fff !important;
}

.btn-outline-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}
.btn-outline-warning:hover {
    background: #ffc107 !important;
    color: #fff !important;
}

.btn-outline-info {
    border-color: #17a2b8 !important;
    color: #17a2b8 !important;
}
.btn-outline-info:hover {
    background: #17a2b8 !important;
    color: #fff !important;
}

/* ============================================================
   12. FORMS - STANDARISASI FONT
   ============================================================ */

.form-control {
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
    color: #1a1a2e !important;
}

.form-control:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.form-control-sm {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    padding: 6px 10px !important;
    height: 38px !important;
    border-radius: 8px !important;
}

.form-control-lg {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
}

.form-group {
    font-family: 'Inter', sans-serif !important;
}

.form-group label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #2d3748 !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.form-group .form-text,
.form-group small {
    font-size: 11px !important;
    font-family: 'Inter', sans-serif !important;
}

/* Form Control Custom - untuk file lain */
.form-control-custom {
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
    padding: 8px 15px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.form-control-custom:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

.form-control-sm-custom {
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
    padding: 6px 12px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    height: 38px !important;
}

.form-control-sm-custom:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
}

/* ============================================================
   13. ALERTS
   ============================================================ */

.alert {
    border-radius: 10px !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.alert-agenda {
    background: #fff3cd !important;
    border-left: 5px solid #ffc107 !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
    font-family: 'Inter', sans-serif !important;
}

.alert-agenda h5 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #856404 !important;
    margin: 0 !important;
}

.alert-agenda p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #856404 !important;
    margin: 5px 0 0 0 !important;
}

/* ============================================================
   14. MODALS - STANDARISASI FONT
   ============================================================ */

.modal-content {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.modal-header {
    border-radius: 12px 12px 0 0 !important;
    padding: 16px 20px !important;
    font-family: 'Inter', sans-serif !important;
}

.modal-header.bg-primary { background: linear-gradient(135deg, #667eea, #764ba2) !important; }
.modal-header.bg-success { background: linear-gradient(135deg, #28a745, #20c997) !important; }
.modal-header.bg-danger { background: linear-gradient(135deg, #dc3545, #e83e8c) !important; }
.modal-header.bg-warning { background: linear-gradient(135deg, #ffc107, #fd7e14) !important; }
.modal-header.bg-info { background: linear-gradient(135deg, #17a2b8, #0dcaf0) !important; }

.modal-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.modal-body {
    padding: 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.modal-footer {
    border-top: 1px solid #edf2f7 !important;
    padding: 12px 20px !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 0 0 12px 12px !important;
}

/* ============================================================
   15. NAVBAR - STANDARISASI FONT
   ============================================================ */

.top-bar {
    font-family: 'Inter', sans-serif !important;
}

.page-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin: 0 !important;
}

.page-title span {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #718096 !important;
    display: block !important;
    margin-top: 2px !important;
}

.date-display {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    color: #718096 !important;
}

.dropdown-menu-custom {
    font-family: 'Inter', sans-serif !important;
}

.dropdown-item-custom {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.dropdown-item-custom i {
    font-size: 13px !important;
}

/* Notifikasi */
.notif-item {
    font-family: 'Inter', sans-serif !important;
}

.notif-item .notif-text h6 {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.notif-item .notif-text p {
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
}

.notif-item .notif-time {
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
}

.notif-badge {
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
    font-weight: 700 !important;
}

/* ============================================================
   16. SIDEBAR - STANDARISASI FONT
   ============================================================ */

.sidebar {
    font-family: 'Inter', sans-serif !important;
}

.sidebar-header h4 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
}

.sidebar-header h4 small {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #718096 !important;
}

.sidebar-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
}

.sidebar-link i {
    font-size: 16px !important;
}

.sidebar-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #a0aec0 !important;
}

.user-name {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
}

.user-role {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    color: #718096 !important;
}

.logout-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

.badge-count {
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
}

.badge-warning {
    font-family: 'Inter', sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
}

/* ============================================================
   17. SEMESTER & AGENDA - STANDARISASI FONT
   ============================================================ */

.semester-info {
    font-family: 'Inter', sans-serif !important;
}

.semester-info h5 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.semester-info .semester-badge {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.semester-active-info {
    font-family: 'Inter', sans-serif !important;
}

.semester-active-info h5 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.semester-active-info .semester-name {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

.semester-select-group {
    font-family: 'Inter', sans-serif !important;
}

.semester-select-group label {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #667eea !important;
}

/* ============================================================
   18. PRESENSI - STANDARISASI FONT
   ============================================================ */

.presensi-stats .stat-item .number {
    font-family: 'Inter', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
}

.presensi-stats .stat-item .label {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #94a3b8 !important;
}

.presensi-status {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 2px 10px !important;
    border-radius: 50px !important;
}

.presensi-status.tepat { background: #d4edda; color: #155724; }
.presensi-status.terlambat { background: #fff3cd; color: #856404; }
.presensi-status.tidak_hadir { background: #f8d7da; color: #721c24; }

/* ============================================================
   19. GURU ITEM - STANDARISASI FONT
   ============================================================ */

.guru-item .guru-avatar {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.guru-item strong {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.guru-item small {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
}

/* ============================================================
   20. DYNAMIC ROW - STANDARISASI FONT
   ============================================================ */

.dynamic-row {
    font-family: 'Inter', sans-serif !important;
}

.dynamic-row .form-group label {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.dynamic-row .form-control-sm {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.dynamic-row .btn-remove {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* ============================================================
   21. BREADCRUMB - STANDARISASI FONT
   ============================================================ */

.breadcrumb {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

.breadcrumb-item {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
}

/* ============================================================
   22. INFO CARD - STANDARISASI FONT
   ============================================================ */

.info-card .number {
    font-family: 'Inter', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
}

.info-card .label {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #64748b !important;
}

.info-card .btn-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* ============================================================
   23. UTILITY CLASSES
   ============================================================ */

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 4px !important; }
.mb-1 { margin-bottom: 4px !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-3 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-4 { margin-bottom: 24px !important; }
.mt-5 { margin-top: 32px !important; }
.mb-5 { margin-bottom: 32px !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pt-1 { padding-top: 4px !important; }
.pb-1 { padding-bottom: 4px !important; }
.pt-2 { padding-top: 8px !important; }
.pb-2 { padding-bottom: 8px !important; }
.pt-3 { padding-top: 16px !important; }
.pb-3 { padding-bottom: 16px !important; }
.pt-4 { padding-top: 24px !important; }
.pb-4 { padding-bottom: 24px !important; }

/* Text */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.text-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }

.justify-content-center { justify-content: center !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.gap-1 { gap: 4px !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 12px !important; }
.gap-4 { gap: 16px !important; }
.gap-5 { gap: 20px !important; }

/* Width */
.w-100 { width: 100% !important; }
.w-75 { width: 75% !important; }
.w-50 { width: 50% !important; }
.w-25 { width: 25% !important; }
.w-auto { width: auto !important; }

.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* Float */
.float-left { float: left !important; }
.float-right { float: right !important; }
.float-none { float: none !important; }

/* Clearfix */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* ============================================================
   24. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================================
   25. RESPONSIVE - FONT ADJUSTMENT
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0 !important;
        padding: 0 16px 30px 16px;
    }
    
    .content-wrapper [class*="col-"] {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .main-content {
        padding: 0 12px 20px 12px;
    }
    
    h1 { font-size: 20px !important; }
    h5 { font-size: 13px !important; }
    .page-title { font-size: 18px !important; }
    .page-title span { display: none !important; }
    
    .small-box .inner h3 { font-size: 22px !important; }
    .small-box .icon { font-size: 32px !important; }
    
    .card-header { padding: 12px 16px !important; }
    .card-body { padding: 16px !important; }
    
    .table th { font-size: 10px !important; }
    .table td { font-size: 12px !important; padding: 6px 8px !important; }
    
    .presensi-stats .stat-item .number { font-size: 22px !important; }
    .info-card .number { font-size: 26px !important; }
    
    .content-wrapper [class*="col-"] {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    
    .semester-info {
        padding: 12px 16px !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .action-buttons .btn { width: 100% !important; }
    .filter-box .btn-filter { width: 100% !important; }
    .filter-box .form-group { margin-bottom: 10px !important; }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .main-content {
        padding: 0 10px 16px 10px;
    }
    
    h1 { font-size: 18px !important; }
    .page-title { font-size: 16px !important; }
    
    .small-box .inner h3 { font-size: 18px !important; }
    .small-box .icon { font-size: 24px !important; }
    
    .table th { font-size: 9px !important; padding: 4px 6px !important; }
    .table td { font-size: 11px !important; padding: 4px 6px !important; }
    
    .btn-sm { font-size: 10px !important; padding: 4px 10px !important; }
    .btn-action { font-size: 10px !important; padding: 3px 8px !important; }
    
    .card-header h5,
    .card-header .card-title {
        font-size: 12px !important;
    }
    
    .modal-title { font-size: 14px !important; }
    .form-group label { font-size: 12px !important; }
    
    .presensi-stats {
        flex-wrap: wrap !important;
    }
    .presensi-stats .stat-item {
        flex: 0 0 50% !important;
        padding: 5px !important;
    }
    .presensi-stats .stat-item .number { font-size: 20px !important; }
    .info-card .number { font-size: 22px !important; }
}

/* ============================================================
   26. PRINT STYLES
   ============================================================ */

@media print {
    .no-print {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0 !important;
        padding: 20px !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .table th {
        background: #f0f0f0 !important;
    }
    
    .sidebar, .top-bar, .navbar {
        display: none !important;
    }
}