﻿.grid-wrapper {
    width: 100%;
    overflow-x: auto;
}

    .grid-wrapper .rz-data-grid {
        min-width: 1200px;
    }

.reports-container {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filters-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.reports-kpis {
    gap: 20px;
}

.reports-charts {
    gap: 20px;
}

    .reports-charts > * {
        flex: 1;
        min-width: 420px;
        background: white !important;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }


/* KPIs (KpiCard.razor) */
.kpi-row {
    margin-bottom: 25px;
}

.kpi-card {
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    color: black;
}

.kpi-data {
    display: flex;
    min-width:170px;
    flex-direction: column;
}

.kpi-value {
    font-size: 20px;
    font-weight: bold;
    opacity: 1;
    color: black;
}

.kpi-title {
    font-size: 14px;
    opacity: 0.5;
}