/* Réinitialisation des styles par défaut */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style du corps de la page */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    padding: 20px;
    padding-top: 100px; /* Ajouter de l'espace pour le header fixe */
    padding-bottom: 60px; /* Ajouter de l'espace pour le footer fixe */
    
}


.container {
    text-align: center; /* Centrage horizontal */
}

.gridContainer {
    display: grid; /* Utilise CSS Grid */
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes de taille égale */
    gap: 20px; /* Espace entre les colonnes */
    padding: 20px; /* Optionnel : espace autour de la grille */
}
.gridContainer2 {
    display: grid; /* Utilise CSS Grid */
    grid-template-columns: repeat(2, 1fr); /* 3 colonnes de taille égale */
    gap: 20px; /* Espace entre les colonnes */
    padding: 20px; /* Optionnel : espace autour de la grille */
}

.item {
    background-color: #f0f0f0; /* Optionnel : couleur de fond pour différencier les colonnes */
    padding: 20px; /* Optionnel : espace à l'intérieur des éléments */
    border: 1px solid #ccc; /* Optionnel : bordure pour les éléments */
    text-align: center; /* Centrage horizontal du texte dans chaque élément */
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif;
    color: #555;
    margin-bottom: 10px;
}

/* Textes */
p {
    line-height: 1.6;
    color: #666;
}

/* Liens */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: grey;
}

/* Boutons */
button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Formulaires */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="submit"],
textarea {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Styles pour le header */
header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%; /* Ajustez cette valeur selon vos besoins */
    margin: 0 auto;
    padding: 0 5vw; /* Ajoute un peu de padding pour les marges latérales */
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacement entre le nom d'utilisateur et l'image */
    justify-content: flex-end;
}

.logo {
    height: 55px; /* Ajustez la hauteur de l'image selon vos besoins */
}

.img {
    margin-top: 1.2vw;
    height: 30px; /* Ajustez la hauteur de l'image selon vos besoins */
    cursor : pointer;
}
.connexion {
    margin-top: 1.2vw;
    cursor : pointer;
}

.header-text {
    font-size: 18px;
    font-weight: bold;
}

/* Styles pour le footer */
footer {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.progress-bar-container {
    width: 30%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 20px auto;
    height: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0;
    transition: width 0.3s ease;
}