.dash-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.dash-filter {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}
.dash-filter.active {
    background: rgba(59,130,246,.2);
    border-color: #3b82f6;
    color: var(--text);
}
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 14px;
}
.dash-card {
    display: flex;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    border-right-width: 4px;
}
.dash-card.color-red { border-right-color: #ef4444; }
.dash-card.color-yellow { border-right-color: #eab308; }
.dash-card.color-green { border-right-color: #22c55e; }
.dash-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(15,23,42,.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-icon { font-size: 1.6rem; }
.dash-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}
.dash-title-row h3 {
    margin: 0;
    font-size: 1rem;
}
.dash-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(148,163,184,.15);
    color: var(--text-muted);
    white-space: nowrap;
}
.color-red .dash-badge { background: rgba(239,68,68,.15); color: #fca5a5; }
.color-yellow .dash-badge { background: rgba(234,179,8,.15); color: #fde68a; }
.color-green .dash-badge { background: rgba(34,197,94,.15); color: #86efac; }
.dash-en {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 6px;
}
.dash-body p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.card-dash:hover { border-color: #f59e0b; }
.card-dash .card-btn { background: rgba(245,158,11,.15); color: #fbbf24; }
.card-dash:hover .card-btn { background: #f59e0b; color: #0f172a; }
.dash-chart-wrap {
    text-align: center;
    margin-bottom: 20px;
    background: #0b1220;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    overflow: hidden;
}
.dash-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}
.dash-chart-cap {
    margin: 8px 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.dash-num {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 700;
}
.dash-icon-wrap {
    position: relative;
}
