:root {
    /* GSM Visual Identity Colors */
    --bg-base: #f4f6f9; 
    --bg-card: rgba(253, 255, 255, 0.88); /* GSM #FDFFFF with glass opacity */
    --border-color: rgba(21, 21, 91, 0.12); /* Based on GSM #15155B */
    --border-inner: rgba(21, 21, 91, 0.06);
    --border-hover: rgba(21, 21, 91, 0.2);
    
    /* GSM Colors */
    --primary: #1A22B2; /* GSM Royal Blue */
    --primary-dark: #15155B; /* GSM Dark Navy */
    --primary-light: rgba(26, 34, 178, 0.05);
    
    --success: #562FCC; /* GSM Purple for success status */
    --success-dark: #3f1eb3;
    --success-light: rgba(86, 47, 204, 0.05);
    
    --danger: #e856d6; /* GSM Pink (adjusted for contrast) for danger status */
    --danger-dark: #c433b2;
    --danger-light: rgba(246, 134, 235, 0.05);
    
    --warning: #FFBB00; /* GSM Yellow-gold */
    --warning-dark: #a17700;
    --warning-light: rgba(255, 187, 0, 0.08);
    
    --accent-pink: #F686EB; /* GSM Pink */
    --accent-purple: #562FCC; /* GSM Purple */
    --text-dark-near: #151624; /* GSM Near Black */
    
    --text-primary: #15155B; /* Use GSM Dark Navy as primary text */
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --shadow-sm: 0 1px 3px 0 rgba(21, 21, 91, 0.02), 0 1px 2px 0 rgba(21, 21, 91, 0.01);
    --shadow-md: 0 4px 6px -1px rgba(21, 21, 91, 0.03), 0 10px 30px -10px rgba(21, 21, 91, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(21, 21, 91, 0.05);
    
    --glass-blur: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, .card-title, .stat-value, .radial-text, .bar-val, .btn-search, .nav-tab, .sidebar-link, .rules-table th {
    font-family: 'Gabarito', sans-serif;
    font-weight: 600;
}

body {
    color: var(--text-primary);
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background-image: url('images/bg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
    pointer-events: none;
}

.app-container {
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Header - Editorial Style with HRD Logo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 28px;
    gap: 15px;
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-info {
    text-align: left;
}

header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

.menu-toggle-btn {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.menu-toggle-btn:hover {
    background: #fbfcfc;
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* Flat Navbar Tab Navigation (Linear Style) */
@media (min-width: 641px) {
    .nav-tabs {
        display: flex !important;
        background: transparent;
        padding: 0;
        border-bottom: 1.5px solid var(--border-color);
        gap: 32px;
        margin-bottom: 10px;
        border-radius: 0;
    }
    
    .menu-toggle-btn {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .nav-tabs {
        display: none !important;
    }
}

.nav-tab {
    padding: 14px 2px;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    max-width: none;
    flex: none;
}

.nav-tab svg {
    opacity: 0.55;
    width: 15px;
    height: 15px;
    transition: opacity 0.15s ease;
}

.nav-tab::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background-color 0.15s ease;
}

.nav-tab:hover {
    color: var(--text-primary);
}

.nav-tab:hover svg {
    opacity: 0.85;
}

.nav-tab.active {
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    box-shadow: none;
    border: none;
}

.nav-tab.active svg {
    opacity: 0.9;
}

.nav-tab.active::after {
    background-color: var(--primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Unified Large Content Panels - Readability Glassmorphism */
.card-panel {
    background: var(--bg-card);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid var(--border-inner);
    padding-bottom: 12px;
}

.card-title svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Rules Section */
.rules-hero {
    background: rgba(253, 255, 255, 0.95);
    border: 1px solid var(--border-inner);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rules-hero svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.rules-hero h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.rules-hero p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.rules-table-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow-x: auto;
    background: rgba(253, 255, 255, 0.95);
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.rules-table th {
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(21, 21, 91, 0.03);
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.rules-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-inner);
    color: var(--text-primary);
    line-height: 1.45;
}

.rules-table tr:last-child td {
    border-bottom: none;
}

.rules-table tr:hover td {
    background: rgba(21, 21, 91, 0.01);
}

/* Custom Minimalist Flat Buttons */
.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background-color: #ffffff;
    color: var(--text-secondary);
    border: 1px solid #dcdad4;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.01);
}

.link-btn:hover {
    background-color: #fbfbf9;
    border-color: #b3b0a7;
    color: var(--text-primary);
}

.link-disabled {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* Dashboard Statistics - Standalone Glass Card Boxes */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    padding: 24px;
    background: rgba(253, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.85rem;
    font-weight: 750;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.stat-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-sub strong {
    color: var(--text-secondary);
}

/* Delicate Radial Progress Rings (Resized to 80px to prevent SVG clipping) */
.radial-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.radial-container svg {
    transform: rotate(-90deg);
}

.radial-bg {
    fill: none;
    stroke: rgba(21, 21, 91, 0.04);
    stroke-width: 5;
}

.radial-bar {
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.radial-text {
    position: absolute;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Connected Average Stats Block - Rounded Card Boxes */
.average-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.average-stats-grid > div {
    background: rgba(253, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.average-stats-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

/* Rounded card box layout for Tools status (Ketercapaian KPP & Konsekuensi) */
.tool-status-card {
    background: rgba(253, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.tool-status-card:hover {
    background: rgba(253, 255, 255, 0.98);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1.5px);
}

/* Search Box - Minimal & Elegant */
.search-area {
    max-width: 500px;
    margin: 10px auto 30px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-field {
    display: flex;
    position: relative;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #ffffff;
    transition: all 0.15s ease;
}

.search-field:focus-within {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(26, 34, 178, 0.08);
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    padding: 0 20px;
    background: var(--primary);
    border: none;
    color: #ffffff;
    font-weight: 550;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.btn-search:hover {
    opacity: 0.92;
}

/* Result Panel - Editorial Style */
.result-panel {
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    background: rgba(253, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.result-placeholder {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.result-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    opacity: 0.4;
}

.result-card {
    display: none;
    animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-header {
    margin-bottom: 18px;
    border-bottom: 1.5px solid var(--border-inner);
    padding-bottom: 12px;
}

.result-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.025em;
}

.result-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.badge-row {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge.success {
    background-color: var(--success-light);
    color: var(--success-dark);
    border: 1px solid rgba(5, 150, 105, 0.12);
}

.badge.danger {
    background-color: var(--danger-light);
    color: var(--danger-dark);
    border: 1px solid rgba(225, 29, 72, 0.12);
}

.badge.primary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(26, 34, 178, 0.12);
}

/* Linear Progress Bars */
.bars-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 500;
}

.bar-label {
    color: var(--text-secondary);
}

.bar-val {
    font-weight: 600;
    color: var(--text-primary);
}

.bar-track {
    height: 5px;
    background: rgba(21, 21, 91, 0.04);
    border: 1px solid var(--border-inner);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.blue { background: var(--primary); }
.bar-fill.green { background: var(--success); }
.bar-fill.orange { background: var(--warning); }
.bar-fill.red { background: var(--danger); }

/* Filter controls */
.filter-btn-group {
    display: flex;
    gap: 2px;
    background: rgba(21, 21, 91, 0.04);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid var(--border-inner);
}

.filter-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    background: #ffffff;
    color: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Search input styling */
.tool-search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 250px;
}

.tool-search-input {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.15s ease;
}

.tool-search-input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(26, 34, 178, 0.06);
}

/* Layout Grid systems */
.dashboard-split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.search-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Alert boxes */
.alert-box {
    display: none;
    background-color: var(--danger-light);
    border: 1px solid rgba(225, 29, 72, 0.15);
    color: var(--danger-dark);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: left;
    margin-top: 10px;
}

/* Sidebar Drawer (Mobile) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 21, 91, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -290px;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.03);
    z-index: 1001;
    transition: left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1.5px solid var(--border-color);
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-inner);
    padding-bottom: 14px;
}

.sidebar-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.sidebar-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 6px;
    transition: background-color 0.15s;
}

.sidebar-close-btn:hover {
    background-color: #f1f5f9;
    color: var(--text-primary);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.sidebar-link svg {
    color: var(--text-muted);
    transition: color 0.15s;
}

.sidebar-link:hover {
    background-color: #faf8f5;
    color: var(--text-primary);
}

.sidebar-link:hover svg {
    color: var(--text-secondary);
}

.sidebar-link.active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 600;
}

.sidebar-link.active svg {
    color: var(--primary-dark);
}

/* Footer logo lockup styles */
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.footer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logos span {
    font-family: 'Gabarito', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* CSS Responsif untuk Mobile Friendly */
@media (max-width: 640px) {
    body {
        padding: 30px 12px;
    }

    .app-container {
        gap: 20px;
    }

    header {
        align-items: center;
        gap: 16px;
        padding-bottom: 16px;
    }

    .header-logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex: 1;
    }

    .header-logo {
        height: 32px;
        align-self: flex-start;
    }

    header h1 {
        font-size: 1.4rem;
        line-height: 1.2;
        width: 100%;
    }

    header p {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-top: 2px;
        width: 100%;
    }

    .card-panel {
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .rules-hero {
        padding: 14px;
        gap: 10px;
        margin-bottom: 12px;
    }

    .rules-hero h3 {
        font-size: 0.95rem;
    }

    .rules-hero p {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    /* Convert rules table to cards on mobile screen sizes */
    .rules-table-container {
        border: none;
        background: transparent;
        margin-bottom: 10px;
    }

    .rules-table, 
    .rules-table thead, 
    .rules-table tbody, 
    .rules-table th, 
    .rules-table td, 
    .rules-table tr {
        display: block;
    }

    .rules-table thead {
        display: none;
    }

    .rules-table tr {
        background: rgba(253, 255, 255, 0.95);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
        border-radius: 10px;
        padding: 14px;
        margin-bottom: 12px;
    }

    .rules-table tr:last-child {
        margin-bottom: 0;
    }

    .rules-table td {
        border-bottom: 1px solid var(--border-inner) !important;
        padding: 8px 0 !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 2px;
        width: 100%;
    }

    .rules-table td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .rules-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-muted);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .rules-table td:first-child {
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-primary);
        display: block;
        border-bottom: 1px dashed var(--border-inner) !important;
        padding-bottom: 6px !important;
        margin-bottom: 4px;
        width: 100%;
    }

    .rules-table td:first-child::before {
        display: none;
    }

    .rules-table td[data-label="Link Spreadsheet"] .link-btn,
    .rules-table td[data-label="Tautan Bukti"] .link-btn {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
    }

    /* Dashboard adjustments */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 18px;
        border-radius: 12px;
    }

    .stat-value {
        font-size: 1.65rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Cek Status adjustments */
    .search-area {
        gap: 10px;
    }

    .search-input {
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .btn-search {
        padding: 0 16px;
        font-size: 0.9rem;
    }

    .result-panel {
        padding: 16px;
        border-radius: 10px;
    }

    .result-header h2 {
        font-size: 1.15rem;
    }

    .result-placeholder {
        padding: 24px 10px;
    }
    
    .badge-row {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .badge {
        padding: 5px 10px;
        font-size: 0.72rem;
    }

    .sk-button-container {
        padding-left: 0 !important;
    }

    .sk-button-container .link-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .tool-filter-section {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .filter-btn-group {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        font-size: 0.78rem;
        padding: 6px 8px;
    }

    .tool-search-container {
        max-width: 100% !important;
    }

    .dashboard-split-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .average-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .search-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    #adminLoginForm {
        padding: 24px 16px !important;
        margin: 20px auto !important;
        border-radius: 12px !important;
        max-width: 100% !important;
    }
}
