﻿.card-custom-style {
    border-radius: 16px !important;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    overflow: hidden; /* empêche tout scroll au niveau document */
}

/* MudLayout occupe exactement le viewport */
.mud-layout {
    height: 100dvh !important;
    overflow: hidden !important;
}

/* Le <main> de MudBlazor participe au flex */
.mud-main-content {
    flex: 1 !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.mud-tabs-panels {
    margin-top: 12px !important;
}

/* Zone @Body : flex column, pas de scroll propre */
.body-scroll-area {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 0.8rem;
    padding-bottom: 36px; /* compense la hauteur du footer fixe */
}

/* Footer fixé en bas, pleine largeur */
.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    padding: 6px 16px;
    text-align: center;
    color: var(--mud-palette-info-text);
    background-color: var(--mud-palette-appbar-background);
    border-top: 1px solid var(--mud-palette-lines-default);
}

/* Paramétrage identique de tous les grids*/
.e-grid {
    font-family: "Roboto", "Montserrat", "Helvetica", "Arial", "sans-serif";
}

    .e-grid .e-altrow {
        background-color: #e3f1bd;
    }

    .e-grid .e-rowcell {
        font-size: 14px;
    }

    .e-grid .e-summarycell {
        font-size: 15px;
        padding-top: 6px;
        padding-bottom: 6px;
    }