body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, button {
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.progress-container {
    margin-top: 20px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 30px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    line-height: 30px;
    width: 0%;
}

.message-popup {
    margin-top: 20px;
    background-color: #e2e2e2;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}





















body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, button {
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.progress-container {
    margin-top: 20px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 30px;
    background-color: #007BFF;
    color: white;
    text-align: center;
    line-height: 30px;
    width: 0%;
}

.message-popup {
    display: none; /* Caché par défaut */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80%; /* Largeur du popup */
    max-width: 400px; /* Largeur maximale */
}
















/* Style pour le bouton de déconnexion */
.logout-button {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #dc3545; /* Couleur rouge pour le bouton */
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.logout-button:hover {
    background-color: #c82333; /* Couleur rouge foncé pour l'état survolé */
    transform: scale(1.05); /* Agrandissement léger au survol */
}

.logout-button:focus {
    outline: none; /* Supprimer la bordure de focus */
}

.logout-icon {
    font-size: 20px; /* Taille de l'icône */
    margin-right: 8px; /* Espacement entre l'icône et le texte */
}

/* Optionnel : ajouter un effet de zoom pour l'icône */
.logout-button .logout-icon:hover {
    transform: scale(1.2); /* Agrandissement léger de l'icône au survol */
}


