/* Contenitore griglia: altezza viewport-relativa, header sempre visibile */
.grid-fill {
    height: calc(100vh - 400px);
    min-height: 200px;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.grid-fill.fitted {
    opacity: 1;
}
@media (max-width: 960px) {
    .grid-fill {
        height: calc(100dvh - 340px);
    }
}

/* Syncfusion Grid - sfondo uguale al tema dark MudBlazor */
.e-grid {
    background-color: #1e1e2d;
    border-color: #33323e !important;
}
.e-grid .e-gridheader {
    background-color: #151521;
    border-color: #33323e !important;
}
.e-grid .e-headercell {
    background-color: #151521;
    color: #b2b0bf;
    border-color: #33323e !important;
}
.e-grid .e-rowcell {
    background-color: #1e1e2d;
    color: #b2b0bf;
    border-color: #33323e !important;
}
/* Righe alternate */
.e-grid .e-altrow .e-rowcell {
    background-color: #2a2833;
}
/* Hover */
.e-grid .e-row:hover .e-rowcell {
    background-color: #33323e !important;
}
