:root {
    --couleur-texte: black;
    --couleur-fond-en-tete: black;
    --couleur-fond: white;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--couleur-fond);
    margin: 0;
    padding: 0;
    color: var(--couleur-texte); /* Définir la couleur de texte par défaut */
}

h1 {
    color: var(--couleur-texte);
    text-align: center;
    padding: 20px;
}

h6 {
    color: var(--couleur-texte);
    text-align: center;
    margin-top: -10px;
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

th {
    background-color: var(--couleur-fond-en-tete);
}

a {
    text-decoration: none;
    color: var(--couleur-texte);
}

a:hover {
    text-decoration: underline;
}

#passwordForm {
    text-align: center;
    margin: 20px;
}

#passwordForm p {
    color: var(--couleur-texte); /* Appliquer la couleur au texte dans le formulaire */
}

#passwordForm input {
    padding: 10px;
    margin-right: 10px;
}
