.stat-tile .stat-label {
    font-size: 0.8rem;
    color: #52514e;
    margin-bottom: 4px;
}

.stat-tile .stat-value {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0b0b0b;
    font-variant-numeric: tabular-nums;
}

.viz-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.viz-bar-row {
    display: grid;
    grid-template-columns: 140px 1fr 48px;
    align-items: center;
    gap: 8px;
}

.viz-bar-label {
    font-size: 0.85rem;
    color: #52514e;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.viz-bar-track {
    background: #e1e0d9;
    border-radius: 4px;
    height: 14px;
    position: relative;
}

.viz-bar-fill {
    height: 100%;
    border-radius: 4px;
    min-width: 4px;
}

.viz-bar-value {
    font-size: 0.85rem;
    color: #0b0b0b;
    font-variant-numeric: tabular-nums;
    text-align: left;
}

.sla-linea {
    display: grid;
    grid-template-columns: 220px 1fr 90px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sla-track {
    display: flex;
    height: 14px;
    border-radius: 4px;
    overflow: hidden;
    background: #e1e0d9;
}

.sla-segmento-cumplido { background: #0ca30c; }
.sla-segmento-incumplido { background: #d03b3b; margin-left: 2px; }

.grupo-compania {
    margin-bottom: 1.5rem;
}

.grupo-compania-titulo {
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 2px solid #2d6cdf;
    padding-bottom: 0.35rem;
    margin-bottom: 0.75rem;
}

.grupo-mes-titulo {
    font-size: 0.9rem;
    font-weight: 600;
    color: #52514e;
    margin: 0.75rem 0 0.35rem;
}

.grupo-mes-total {
    font-weight: 400;
    color: #767669;
}

@media (max-width: 576px) {
    .viz-bar-row {
        grid-template-columns: 1fr;
        gap: 2px;
        text-align: left;
    }

    .viz-bar-label {
        text-align: left;
        white-space: normal;
    }

    .sla-linea {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media print {
    .no-imprimir {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .app-main {
        padding: 0;
        max-width: 100%;
    }

    .card {
        border: none !important;
        box-shadow: none !important;
    }
}
