/* Réinitialisation de base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Style général pour la partie admin */
.content {
    margin-left: 220px; /* Largeur de la sidebar */
    padding: 20px;
    width: calc(100% - 220px);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
    width: 200px;
    background-color: #2c3e50; /* Fond foncé */
    padding: 20px;
    height: 100vh;
    position: fixed;
    color: #fff;
}

.sidebar h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #fff; /* Titre "Menu Admin" en blanc */
}

/* Boutons du menu */
.menu-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1em;
    color: #fff;
    text-align: left;
    background-color: #1abc9c; /* Ton turquoise */
    transition: background-color 0.3s;
}

.menu-button:hover {
    background-color: #16a085; /* Ton turquoise plus foncé au hover */
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
}

th, td {
    padding: 12px; /* Police plus grande */
    text-align: left;
    border: 1px solid #ddd;
    font-size: 1.1em; /* Police augmentée (environ 16-18px) */
}

th {
    background-color: #3498db;
    color: #fff;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Formulaires */
form {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="date"],
select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.0em;
}

input[type="submit"] {
    background-color: #2ecc71;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
}

input[type="submit"]:hover {
    background-color: #27ae60;
}

/* Liens */
a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

a:hover {
    background-color: #c0392b;
}

/* Messages de succès/erreur */
.success {
    color: #2ecc71;
    font-weight: bold;
}

.error {
    color: #e74c3c;
    font-weight: bold;
}

/* Styles spécifiques pour l'agenda (si nécessaire) */
.calendar {
    margin-top: 20px;
}

.month {
    background-color: #800000;
    color: white;
    text-align: center;
}

.day-column {
    text-align: center;
}

.holiday {
    background-color: #ffcccc;
}

.vacation {
    background-color: #e6f3ff;
}

.sunday {
    background-color: #f2f2f2;
}