

/* Telas Médias (Ex: Notebooks 1366x768) */
@media (min-width: 1024px) {
    .dashboard-card {
        height: calc(100vh - 140px);/* -140px para o header e toolbar */
    }
}

/* Telas Grandes (Ex: Monitores 1920x1080) */
@media (min-width: 1600px) {
    .dashboard-card {
        height: calc(90vh - 100px);
    }

    .dashboard {
        height: calc(100vh - 100px);
    }
}