:root {
    --primary-green: #2e7d32;
    --secondary-green: #4CAF50;
    --light-green-bg: #e8f5e9;
    --bg-light-gray: #f4f6f9;
    --text-dark: #333333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
    --red: #dc3545;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    display: flex; 
    min-height: 100vh; 
    background-color: var(--bg-light-gray); 
    color: var(--text-dark); 
}

/* ==========================================================================
   2. LAYOUT
   ========================================================================== */

/* --- Sidebar --- */
.sidebar { 
    width: 260px; 
    background: #dcedc8;
    color: var(--white);
    box-shadow: var(--shadow);
    display: flex; 
    flex-direction: column; 
    padding: 20px; 
    border-radius: 0 3px 3px 0;
    flex-shrink: 0; 
}
.sidebar-header { 
    display: flex; align-items: center; gap: 12px; 
    padding-bottom: 10px; margin-bottom: 10px; 
    border-bottom: 1px solid var(--border-color); 
}
.sidebar-header .logo { border-radius: 3px; }
.sidebar-header h1 { font-size: 1.5em; font-weight: 500; color: var(--primary-green); }

/* --- Sidebar Navigation --- */
.sidebar-nav { flex-grow: 1; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 1px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 7px;
    color: var(--text-dark);
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sidebar-nav a:hover {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    transform: translateX(5px);
}
.sidebar-nav a.active { 
    background-color: var(--secondary-green);
    color: var(--white);
    font-weight: 300; 
}
.sidebar-nav a i {
    width: 20px;
    margin-right: 16px;
    font-size: 1.1em;
    transition: color 0.3s, transform 0.3s;
}
.sidebar-nav a:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* --- Sidebar Submenu --- */
.sidebar-nav .has-submenu > a { position: relative; }
.submenu-toggle { 
    position: absolute; right: 10px; top: 50%; 
    transform: translateY(-50%) rotate(0deg); 
    font-size: 0.8em; transition: transform 0.3s; 
}
.has-submenu.open > a > .submenu-toggle { 
    transform: translateY(-50%) rotate(90deg); 
}
.submenu { 
    list-style: none; display: none; padding-left: 20px; 
    background-color: #dcedc8; margin: 5px 0; border-radius: 8px;
}
.submenu a { color: var(--text-light); padding: 6px 14px 6px 24px; font-size: 0.9em; }
.submenu a:hover { color: var(--primary-green); background-color: rgba(76, 175, 80, 0.1); }

/* --- User Profile in Sidebar --- */
.user-profile { 
    display: flex; align-items: center; 
    padding-top: 2px; padding-bottom: 30px;
    border-top: 1px solid var(--border-color); 
}
.user-profile .avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 12px; }
.user-profile .user-info { flex-grow: 1; }
.user-profile .user-name { font-weight: 600; font-size: 1em; line-height: 1.2; color: var(--text-dark);}
.user-profile .user-role { font-size: 0.9em; color: var(--text-dark); }
.user-profile .logout-link { color: var(--text-dark); font-size: 1.2em; text-decoration: none; }
.user-profile .logout-link:hover { color: var(--red); }

/* --- Main Content Area --- */
.main-content { flex-grow: 1; padding: 30px; overflow-y: auto; }
.content-header { margin-bottom: 30px; }
.content-header h1 { font-size: 1.2em; font-weight: 400; margin-bottom: 3px; }
.content-header p { color: var(--text-light); }

@media (min-width: 1400px) {
    .main-content { max-width: 1200px; margin: 0 auto; }
}

/* --- Mobile Header & Toggle --- */
.mobile-header { display: none; align-items: center; margin-bottom: 20px; position: sticky; top: 0; background-color: var(--bg-light-gray); padding: 10px 0; z-index: 999; }
.sidebar-toggle-btn { display: none; background: none; border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 12px; font-size: 1.2em; cursor: pointer; color: var(--text-dark); }
.mobile-brand { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.mobile-brand .logo { border-radius: 6px; }
.mobile-brand h1 { font-size: 1.4em; color: var(--primary-green); }
.sidebar-close { display: none; position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--text-dark); font-size: 1.8rem; cursor: pointer; width: 32px; height: 32px; z-index: 1001; }

/* ==========================================================================
   3. COMPONENTS
   ========================================================================== */

/* --- Card --- */
.card { 
    background-color: var(--white); border-radius: 8px; 
    box-shadow: var(--shadow); overflow: hidden; margin-bottom: 1rem;
}
.card-header { 
    padding: 20px 24px; border-bottom: 1px solid var(--border-color); 
    display: flex; justify-content: space-between; align-items: center; 
}
.card-header h2 { font-size: 1.1em; color: var(--primary-green); font-weight: 500; }
.card-body { padding: 24px; }

/* PERBAIKAN: Mengganti .card.mt-4 dengan class modifier .card-form */
.card-form .card-header {
    background-color: var(--light-green-bg);
    padding: 16px 20px;
}
.card-form .card-header h2 {
    color: var(--primary-green);
}
.card-form .form-group label {
    font-weight: 500;
}

/* --- Table --- */
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-collapse: collapse; }
.table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.table th, .table td { 
    padding: 10px 12px; border-bottom: 1px solid var(--border-color); 
    text-align: left; vertical-align: middle; font-size: 0.9em;
}
.table th { font-weight: 600; background-color: #f8f9fa; text-transform: uppercase; font-size: 0.85em; }
.user-info-cell { display: flex; align-items: center; }
.user-info-cell img { width: 40px; height: 40px; border-radius: 50%; margin-right: 15px; object-fit: cover; }
.table tbody tr:hover { background-color: #f8fbf9; transition: background-color 0.2s; }

/* --- Badge (Definisi Tunggal) --- */
.badge { 
    padding: 6px 10px; border-radius: 8px; 
    font-size: 0.8em; font-weight: 600; color: var(--white);
    display: inline-block;
}
.role-admin { background-color: #dc3545; }
.role-instruktur { background-color: #007bff; }
.role-peserta { background-color: #28a745; }
.level-pemula { background-color: #17a2b8; }
.level-menengah { background-color: #ffc107; color: #333; }
.level-ahli { background-color: #6f42c1; }
.status-published { background-color: #28a745; }
.status-draft { background-color: #6c757d; }
.status-archived { background-color: #343a40; }

/* --- Button (Definisi Tunggal) --- */
.btn { 
    display: inline-block; padding: 8px 16px; 
    border-radius: 8px; text-decoration: none; 
    font-weight: 500; transition: all 0.2s; 
    border: none; cursor: pointer;
}
.btn-primary { background-color: var(--secondary-green); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-green); }
.btn-secondary { background-color: #e9ecef; color: var(--text-dark); }
.btn-secondary:hover { background-color: #dee2e6; }
.btn-danger {
    background-color: #dc3545;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    transition: 0.25s;
}

.btn-danger:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}
.btn-success {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
    font-weight: bold;
    transition: 0.25s;
}

.btn-success:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
    transform: scale(1.05);
}
.btn-info {
    background-color: #0096c7;
    border-color: #0096c7;
    color: #fff;
    font-weight: 600;
    transition: 0.25s;
}

.btn-info:hover {
    background-color: #0077b6;
    border-color: #0077b6;
    transform: scale(1.05);
}

/* --- Action Button (Definisi Tunggal) --- */
.btn-action {
    color: var(--text-light); font-size: 1.1em; padding: 6px; 
    border-radius: 8px; transition: all 0.2s ease-in-out;
    background: none; border: none; cursor: pointer;
}
.btn-action:hover {
    color: var(--primary-green);
    background-color: rgba(46, 125, 50, 0.1);
    transform: scale(1.1);
}
.action-buttons { display: flex; justify-content: center; gap: 0.4rem; }

/* --- Form --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-control { 
    width: 100%; padding: 10px 15px; border: 1px solid var(--border-color); 
    border-radius: 8px; font-size: 0.95em; font-family: 'Poppins', sans-serif; 
    transition: border-color 0.2s, box-shadow 0.2s; 
}
.form-control:focus { 
    outline: none; border-color: var(--secondary-green); 
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2); 
}
.form-actions { margin-top: 2rem; display: flex; gap: 10px; }
.search-form .form-control, .search-form .btn { font-size: 0.9em; padding: 8px 12px; }

/* --- Input Group --- */
.input-group { display: flex; width: 100%; }
.input-group .form-control { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.input-group .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; }

/* --- Alert --- */
.alert { padding: 1rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 8px; }
.alert-danger { color: #721c24; background-color: #f8d7da; border-color: #f5c6cb; }
.alert-success { color: #155724; background-color: #d4edda; border-color: #c3e6cb; }

/* --- Progress Bar (Konsolidasi) --- */
.progress-container { 
    background-color: #e9ecef; border-radius: 10px;
    height: 10px; overflow: hidden; width: 100%; margin-top: 5px;
}
.progress-bar {
    height: 100%; background-color: #17a2b8; /* Default: biru info */
    border-radius: 10px; transition: width 0.8s ease-in-out;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: .75rem;
}
.progress-bar.success { background-color: #28a745; /* hijau sukses */ }
.progress-bar-fill {
    height: 100%;
    background-color: #17a2b8; /* warna biru untuk progress */
    transition: width 0.5s ease;
}
.progress-bar-fill.success {
    background-color: #28a745; /* warna hijau untuk kelulusan */
}

/* --- Tabs --- */
.nav-tabs { display: flex; flex-wrap: wrap; list-style: none; padding-left: 0; margin-bottom: 0; border-bottom: 1px solid var(--border-color); }
.nav-item { margin-bottom: -1px; }
.nav-link { display: block; padding: 0.75rem 1.25rem; text-decoration: none; color: var(--text-light); border: 1px solid transparent; border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.nav-link:hover { border-color: #e9ecef #e9ecef var(--border-color); }
.nav-link.active { color: var(--primary-green); background-color: var(--white); border-color: var(--border-color) var(--border-color) var(--white); font-weight: 600; }
.card-tabs { border-top-left-radius: 0; }
.nav-tabs-mobile { display: none; }

/* --- Accordion --- */
.accordion-item { border: 1px solid var(--border-color); border-top: 0; }
.accordion-item:first-of-type { border-top: 1px solid var(--border-color); border-top-left-radius: 8px; border-top-right-radius: 8px; }
.accordion-item:last-of-type { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
.accordion-header button { background-color: #f8f9fa; border: none; width: 100%; text-align: left; padding: 1rem 1.25rem; font-size: 1rem; color: var(--text-dark); position: relative; }
.accordion-button:not(.collapsed) { background-color: var(--light-green-bg); color: var(--primary-green); }
.accordion-button::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%) rotate(0deg); transition: transform 0.2s ease-in-out; }
.accordion-button:not(.collapsed)::after { transform: translateY(-50%) rotate(-180deg); }
.accordion-body { padding: 1.25rem; }

/* --- Statistic Card (Definisi Tunggal) --- */
.card-statistic { position: relative; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; margin: 1px; }
.card-statistic:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.card-statistic .card-body { display: flex; align-items: center; border-radius: 15px; position: relative; z-index: 2; }
.statistic-icon { width: 60px; height: 60px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin-right: 20px; }
.statistic-details { line-height: 1.2; }
.statistic-label { color: var(--text-light); font-size: 0.9em; }
.statistic-value { font-size: 2rem; font-weight: 700; }
.stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; }
.bg-primary { background-color: #0d6efd !important; }
.bg-success { background-color: var(--secondary-green) !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #0dcaf0 !important; }
.text-white { color: #fff !important; }
.text-white .statistic-label { color: rgba(255,255,255,0.8) !important; }

/* --- Modal --- */
.modal-content { animation: fadeInUp 0.3s ease-in-out; }
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* --- List Group --- */
.list-group { list-style: none; padding: 0; }
.list-group-item { padding: 0.75rem 0; border-bottom: 1px solid #f0f0f0; }
.list-group-item:last-child { border-bottom: 0; }

/* ==========================================================================
   4. UTILITIES & GRID
   ========================================================================== 
.row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.col-lg-3 { grid-column: span 3; }
.col-lg-4 { grid-column: span 4; }
.col-lg-5 { grid-column: span 5; }
.col-lg-6 { grid-column: span 6; }
.col-lg-7 { grid-column: span 7; }
.col-lg-8 { grid-column: span 8; }
.col-lg-12 { grid-column: span 12; }*/

.d-flex { display: flex !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.text-center { text-align: center !important; }
.text-danger { color: var(--red) !important; }
.text-success { color: var(--secondary-green) !important; }
.font-weight-bold { font-weight: 600; }
.text-muted { color: var(--text-light); font-size: 0.9em; }
.small { font-size: 0.875em; }
.mb-1 { margin-bottom: 0.25rem !important; }

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .sidebar { position: fixed; left: 0; top: 0; height: 100%; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease-in-out; }
    .sidebar.show { transform: translateX(0); box-shadow: 0 0 20px rgba(0,0,0,0.2); }
    .main-content { width: 100%; padding: 20px; }
    .mobile-header, .sidebar-toggle-btn, .sidebar-close { display: flex; }
    .content-header h1 { font-size: 1.8em; }
    
    .col-lg-3 { grid-column: span 6; }
    .col-lg-4, .col-lg-5, .col-lg-7, .col-lg-8 { grid-column: span 12; }
    
    .nav-tabs { display: none; }
    .nav-tabs-mobile { display: block; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .main-content, .card, .card-body, .table-responsive { text-align: center; margin: 0 auto; }
    .nav-tabs-mobile { width: 90%; margin: 10px auto; text-align: center; }
    .course-table thead { display: none; }
    .course-table tbody td { display: block; width: 100%; text-align: center; padding: 8px 10px; border-bottom: 1px solid #eee; }
    .course-table tbody td::before { float: none; display: block; text-align: center; font-weight: 600; margin-bottom: 4px; }
    .action-buttons { justify-content: center; }
    .search-form { margin: 0 auto; display: block; text-align: center; width: 90%; }
    .input-group { justify-content: center; }
}

/* ==========================================================================
   6. PAGE SPECIFIC STYLES
   ========================================================================== */

/* --- Certificate --- */
.certificate-container { background-color: var(--white); padding: 2rem; border: 10px solid var(--primary-green); border-radius: 8px; max-width: 800px; margin: 0 auto; }
.certificate-content { border: 2px solid var(--secondary-green); padding: 2rem; text-align: center; }
.cert-title { font-size: 2.5rem; color: var(--primary-green); font-weight: 700; }
.cert-name { font-size: 2.2rem; font-weight: 600; margin: 1rem 0 0.5rem 0; }
.cert-course-title { font-size: 1.8rem; font-weight: 600; color: var(--primary-green); margin: 0.5rem 0 2rem 0; }
.cert-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 3rem; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.cert-footer > div { flex: 1; }
.signature-preview-box { margin-top: 0.5rem; padding: 1rem; background-color: #f8f9fa; border: 1px solid var(--border-color); border-radius: 8px; text-align: center; max-width: 300px; }
.signature-preview-box img { max-height: 80px; max-width: 100%; }

/* --- Course Catalog / Cards --- 
.course-card { display: flex; flex-direction: column; text-decoration: none; color: var(--text-dark); transition: all 0.2s ease-in-out; }
.course-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.course-card .card-body { flex-grow: 1; }
.course-card .card-img-top { height: 180px; object-fit: cover; }
.row-cols-1 { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .row-cols-md-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .row-cols-md-3 { grid-template-columns: repeat(3, 1fr); } }*/

/* --- Course Player --- */
.player-page-body .sidebar { display: none; }
.player-page-body .main-content { padding: 0; height: 100vh; }
.course-player-container { display: flex; flex-direction: row; height: 100vh; }
.course-player-sidebar { width: 320px; flex-shrink: 0; background-color: var(--white); border-right: 1px solid var(--border-color); padding: 1.5rem; overflow-y: auto; }
.course-player-content { flex-grow: 1; padding: 2rem; overflow-y: auto; background-color: #f8f9fa; }
.course-player-sidebar h4 { font-size: 1.2rem; font-weight: 600; }
.course-player-sidebar .accordion-item { border: none; background: none; }
.course-player-sidebar .accordion-header button { background-color: transparent; border: none; font-weight: 600; padding: 0.75rem 0; }
.course-player-sidebar .accordion-button:not(.collapsed) { box-shadow: none; color: var(--primary-green); }
.course-player-sidebar .list-group-item { border: none; padding: 0.6rem 1rem; font-size: 0.9rem; }
.course-player-sidebar .list-group-item.active { background-color: var(--light-green-bg); color: var(--primary-green); font-weight: 600; border-right: 3px solid var(--primary-green); }
.lesson-content-area { background-color: var(--white); padding: 2rem; border-radius: 8px; min-height: 400px; }

/* --- Question Management --- */
.question-type-fields { display: none; border-left: 3px solid var(--border-color); padding-left: 15px; margin-left: 5px; }
.question-actions { display: flex; gap: 0.5rem; }
.option-item { display: flex; align-items: center; margin-left: 1.8rem; padding: 2px 0; }
.option-item i { min-width: 16px; }

/* ==========================================================================
   Course Player Layout (Tambahkan atau Ganti yang Lama)
   ========================================================================== */
.player-page-body .sidebar { display: none; }
.player-page-body .main-content { padding: 0; height: 100vh; max-width: none; }

.course-player-container {
    display: flex;
    flex-direction: row;
    height: 100vh; 
}

/* --- Sidebar Daftar Materi --- */
.course-player-sidebar {
    width: 320px;
    flex-shrink: 0;
    background-color: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
}
.course-player-sidebar h4 { font-size: 1.2rem; font-weight: 600; }
.course-player-sidebar .accordion-item { border: none; background: none; }
.course-player-sidebar .accordion-header button { background-color: transparent; border: none; font-weight: 600; padding: 0.75rem 0; box-shadow: none; }
.course-player-sidebar .accordion-button:not(.collapsed) { color: var(--primary-green); }
.course-player-sidebar .list-group-item { border: none; padding: 0.6rem 1rem; font-size: 0.9rem; }
.course-player-sidebar .list-group-item.active { background-color: var(--light-green-bg); color: var(--primary-green); font-weight: 600; border-right: 3px solid var(--primary-green); }
.btn-back-to-courses { text-decoration: none; color: var(--text-light); display: block; }

/* --- Konten Materi Utama --- */
.course-player-content {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: #f8f9fa;
}
.lesson-content-area {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    min-height: 400px;
}

/* --- Tampilan Proporsional untuk Video & PDF --- */
.ratio {
    position: relative;
    width: 100%;
}
.ratio::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* Rasio 16:9 */
}
.ratio iframe, .ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pdf-viewer {
    position: relative;
    width: 100%;
    height: 70vh; /* Tinggi 70% dari viewport */
    border: 1px solid var(--border-color);
}
.pdf-viewer iframe { border: none; }

/* --- Header & Judul untuk Mobile --- */
.course-player-header {
    display: none; /* Sembunyikan di desktop */
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.sidebar-toggle-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9em;
    cursor: pointer;
    color: var(--text-dark);
}
.lesson-title-mobile {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lesson-title-desktop { display: block; } /* Tampilkan di desktop */

/* --- Media Query untuk Mobile & Tablet --- */
@media (max-width: 992px) {
    .course-player-container { flex-direction: column; height: auto; }
    
    .course-player-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1050;
        transform: translateX(-100%);
    }
    .course-player-sidebar.show {
        transform: translateX(0);
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

    .course-player-content { padding: 1rem; }
    .lesson-content-area { padding: 1.5rem; }
    
    .course-player-header { display: flex; }
    .lesson-title-desktop { display: none; } /* Sembunyikan judul desktop */
}

.report-section {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.report-section .card {
    flex: 1 1 45%;
    min-width: 320px;
    max-width: 520px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

/* agar tinggi card sejajar */
.report-section {
    align-items: stretch;
}
.report-section .card .card-body {
    height: 100%;
}

/* spacing dalam card */
.report-section .card-body {
    padding: 1.5rem 1.75rem;
}

/* warna teks & heading */
.report-section h5 {
    color: #2e7d32;
    font-weight: 700;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
    font-size: 0.9em;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--primary-green);
}

.breadcrumb-item.active {
    color: var(--text-light);
}