body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.table-container {
    overflow-x: auto; /* Allows horizontal scrolling */
    width: 100%; /* Ensures the container takes up full width */
}

.table {
    width: 100%; /* Ensures the table takes up full width */
}

.table th, .table td {
    min-width: 120px; /* Minimum width for each column */
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
}

/* Center the form and title */
.d-flex {
    display: flex;
    justify-content: center; /* Centers the form horizontally */
}
.highlight {
    background-color: #ffff99; /* Couleur jaune pâle pour surligner */
}

.footer {
    background-color: #343a40; /* Couleur de fond du footer */
    color: #ffffff; /* Couleur du texte */
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

/* Styles pour le bandeau dans le footer */
.footer-banner {
    background-color: #6c757d; /* Couleur du bandeau */
    color: #ffffff; /* Couleur du texte du bandeau */
    padding: 10px 0;
    text-align: center;
    position: relative;
}

/* Styles pour le texte du bandeau */
.banner-text {
    margin: 0;
    font-size: 1.2rem; /* Taille du texte du bandeau */
    font-weight: bold; /* Poids du texte du bandeau */
}

/* Styles pour le logo du bandeau */
.banner-logo {
    width: 100px; /* Ajuste la largeur du logo */
    height: auto;
    margin-bottom: 10px;
}

/* Espacement sous le contenu principal pour faire place au footer */
body {
    margin-bottom: 100px; /* Ajuste la valeur selon la hauteur souhaitée */
}