    .dashboard-container {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        max-width: 1200px;
        margin: 0 auto 60px auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .bi-header-panel {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
        color: white;
        padding: 22px 28px;
        border-radius: 12px;
        margin-bottom: 25px;
        box-shadow: 0 4px 15px rgba(10,58,96,0.15);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bi-header-title h2 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
    .bi-header-title p { margin: 5px 0 0 0; font-size: 13px; color: var(--accent-gold); font-weight: 500; }

    .btn-clear-filters {
        background-color: var(--accent-gold);
        color: #1E293B;
        border: none;
        padding: 10px 20px;
        font-weight: 700;
        font-size: 12.5px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .btn-clear-filters:hover { background-color: var(--accent-gold-hover); transform: translateY(-1px); }

    .kpi-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .kpi-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-top: 4px solid var(--primary-blue);
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    }
    .kpi-card.kpi-accent { border-top-color: var(--accent-gold); }
    .kpi-title { font-size: 11px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin: 0 0 6px 0; letter-spacing: 0.5px; }
    .kpi-value { font-size: 34px; font-weight: 800; color: var(--primary-blue); margin: 0; line-height: 1.1; }
    .kpi-subtitle { font-size: 11.5px; color: var(--text-muted); margin: 6px 0 0 0; }

    .dashboard-layout { display: grid; grid-template-columns: 1fr; gap: 25px; }
    @media (min-width: 900px) { .dashboard-layout { grid-template-columns: 5fr 7fr; } }

    .bi-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 22px; box-shadow: 0 2px 5px rgba(0,0,0,0.01); }
    .bi-card-title { font-size: 14.5px; font-weight: 700; color: var(--primary-blue); margin: 0 0 20px 0; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
    .bi-card-title span.hint { font-size: 11px; color: var(--text-muted); font-weight: 400; font-style: italic; }

    .chart-row { margin-bottom: 14px; cursor: pointer; padding: 6px 8px; border-radius: 6px; transition: all 0.15s ease; }
    .chart-row:hover { background-color: var(--bg-light); }
    .chart-row.active-filter { background-color: #eaf2f8; border-left: 4px solid var(--primary-blue); padding-left: 10px; font-weight: 600; }
    .chart-row.active-filter-gold { background-color: #fdfaf0; border-left: 4px solid var(--accent-gold); padding-left: 10px; font-weight: 600; }

    .chart-info { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 5px; }
    .chart-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 12px; }
    .chart-num { font-family: monospace; font-weight: 600; color: var(--text-dark); }
    .chart-bar-bg { width: 100%; background-color: #edf2f7; height: 9px; border-radius: 5px; overflow: hidden; }
    .chart-bar-fill { height: 100%; border-radius: 5px; transition: width 0.4s ease; }

    .filter-indicator { background-color: #ffffff; border: 1px solid var(--border-color); padding: 12px 20px; border-radius: 8px; margin-bottom: 25px; font-size: 13px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .filter-badge { background-color: var(--primary-blue); color: white; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
    .filter-badge .close-btn { cursor: pointer; background: rgba(255,255,255,0.2); border-radius: 50%; width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: bold; }
    .filter-badge .close-btn:hover { background: rgba(244, 67, 54, 0.8); }

    .table-wrapper { max-height: 330px; overflow-y: auto; border: 1px solid var(--border-color); border-radius: 8px; }
    .bi-table { width: 100%; border-collapse: collapse; font-size: 12.5px; text-align: left; }
    .bi-table th { background-color: var(--bg-light); color: var(--primary-blue); font-weight: 700; padding: 11px 12px; position: sticky; top: 0; z-index: 10; border-bottom: 2px solid var(--border-color); }
    .bi-table td { padding: 9px 12px; border-bottom: 1px solid var(--border-color); max-width: 240px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .bi-table tr:hover td { background-color: var(--bg-light); }