
/* =========================================================
   RETRIPS KPI TILES
   Presentation only - no callback/data logic changes
   ========================================================= */

#retrips-view .kpi-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 14px 0 18px 0;
}

#retrips-view .kpi-card {
    background: linear-gradient(180deg, #10271d 0%, #0b1d16 100%);
    border: 1px solid #285a43;
    border-radius: 7px;
    padding: 16px 18px;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

#retrips-view .kpi-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #d5e4dc;
    margin-bottom: 7px;
}

#retrips-view .kpi-value {
    font-size: 27px;
    line-height: 1;
    font-weight: 700;
    color: #00e58b;
}

@media (max-width: 1000px) {
    #retrips-view .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
