body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Anciens styles pour le lien Tableau de bord avancé - Supprimés car le lien a été déplacé dans le menu */

/* Style pour le message de bienvenue */
.welcome-message {
    color: #ffffff;
    margin-right: 15px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0 15px 0 0;
    font-weight: 500;
}

/* Ajustement pour l'alignement du header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Style pour le titre de la page */
.page-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 30px;
    padding: 0 15px;
    white-space: nowrap;
    flex-grow: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.7;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
    background-color: #333;
    padding: 1em;
}
header nav ul li a {
    color: white;
    text-decoration: none;
}
footer {
    background-color: #0a192f; /* Même couleur que le header */
    color: #f5f5f5;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Styles pour le tableau du dashboard avancé */
.dashboard-container .table {
    margin-bottom: 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.dashboard-container .table thead th {
    background-color: #f8f9fa;
    color: #333;
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dee2e6;
}

.dashboard-container .table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: #f0f0f0;
    background-color: white;
}

.dashboard-container .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.dashboard-container .table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.dashboard-container .text-end {
    text-align: right;
}

.dashboard-container .table-responsive {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
