/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corps de la page */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f8fa;
    color: #333;
    padding: 20px;
}

/* Conteneur principal */
.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 40px;
}

/* Titres */
h1, h2 {
    text-align: center;
    color: #0a4275;
    margin-bottom: 20px;
}

/* Formulaires */
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="date"],
form input[type="time"],
form input[type="number"],
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Boutons */
button {
    padding: 10px 20px;
    background-color: #0a4275;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #07365d;
}

/* Liens */
a {
    color: #0a4275;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 10px;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
}

/* Messages d'erreur */
.error {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}
