/* Applique une police élégante
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */

/* Conteneur centré pour la page d'administration */
.container {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    padding: 30px;
    margin: 60px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 55vh;
    width: 100%;
}

/* Style pour le titre de la page */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Style pour le label et l'input du formulaire */
form label {
    font-size: 16px;
    color: #555;
    display: block;
    margin-bottom: 10px;
}

/* Style pour l'input de téléchargement de fichier */
form input[type="file"] {
    display: block;
    width: 95%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fafafa;
}

/* Style pour le bouton de soumission */
form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Effet au survol du bouton */
form button:hover {
    background-color: #0056b3;
}

/* Style pour les messages */
ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    color: #007bff;
    font-weight: bold;
}  

.menu{
    background-color: #007bff;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center;
}

/* Style pour chaque message */
 ul {
    background-color: #eee9e6;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center;
} 

input[type="text"],
input[type="password"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 95%;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}


.navbar {
    font-family: 'Arial', sans-serif;
    width: 100%; /* Occupe toute la largeur de l'écran */
    background-color: #007bff; /* Couleur de fond */
    overflow: hidden;
    padding: 10px;
    display: flex;
    justify-content: flex-start; /* Alignement à gauche */
    align-items: center; /* Centrage vertical du contenu */
    position: relative; /* Position normale dans le flux du document */
    z-index: 1000; /* Assure que la barre est au-dessus des autres éléments */
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin-left: 20px}

.navbar ul li a {
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 4px;
}

.navbar ul li a:hover {
    background-color: #007bff;
}

/* .bg-logo {
    background: url(../img/logo-saar.png) no-repeat fixed center;
    background-size: 50%;
    background-position: center center;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
    display:flex;
    flex-wrap:inherit;
    align-items:center;
    justify-content:space-between;
    width: 100%;
    padding-right:var(--bs-gutter-x, 0.75rem);
    padding-left:var(--bs-gutter-x, 0.75rem);
    margin-right:auto;
    margin-left:auto
    
}
 */


