/* Assurez-vous que le HTML et le body prennent toute la hauteur */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8; /* Couleur de fond du corps */
    padding: 0;
}

/* Menu général pour tous les utilisateurs */
.menu-container {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px; /* Espace entre les boutons */
}

.menu-container button {
    background-color: #003F53; /* Couleur du fond des boutons */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-container button:hover {
    background-color: #007BFF; /* Couleur au survol */
}
.region-block {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
}

.region-block h3 {
    margin-top: 0;
}

.month-buttons {
	background-color: #003F53;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.month-buttons button {
    background-color: #003F53;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.month-buttons button:hover {
    background-color: #003F53;
	}
	
/* Style pour l'entête de la page d'administration */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #003F53;
    color: white;
    border-radius: 8px;
}

.admin-logo-title {
    display: flex;
    align-items: center;
}

.admin-logo-title img.logo {
    max-width: 150px; /* Ajuste la largeur du logo */
    height: auto; /* Conserve la proportion du logo */
    margin-right: 20px;
}

.admin-header h1 {
    font-size: 1.5rem;
}

.admin-info {
    text-align: right;
    font-size: 0.9rem;
}

.admin-info a {
    color: white;
    text-decoration: none; /* Facultatif pour supprimer le soulignement */
}

.admin-info a:hover {
    text-decoration: underline; /* Facultatif pour l'effet au survol */
}

/* Style du pied de page */
.admin-footer {
    background-color: #003F53;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid #007BFF;
    margin-top: auto; /* Pousse le footer en bas de la page */
}

.admin-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.admin-footer a:hover {
    text-decoration: underline;
}

/* Styles des boutons d'export */
.export-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.export-buttons button {
    margin-left: 10px;
}
.admin-header {
    position: relative;
}

.admin-center-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    white-space: nowrap;
}
