/* Main content adjustment */
.main-content {
    padding-top: 72px;
    /* Ajustez selon la hauteur de votre header */
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #7388aa 100%);
    min-height: 100vh;
    /* Ensure minimum height is full viewport */
    height: 100%;
    /* Take full height */
    width: 100%;
    /* Take full width */
    margin: 0;
    /* Remove default margins */
    padding: 0;
    /* Remove default padding */
    display: flex;
    /* Use flexbox for layout */
    flex-direction: column;
    /* Stack children vertically */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

.card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.table th {
    width: 40%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 50px;
    /* background: linear-gradient(to left, #8192ac, #aabacf); */

}