
        body {
            font-family: Arial, sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 0;
           /* display: flex; */
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .container {
            background: #fef7f7;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 800px;
            margin: 50px auto;
            text-align: center;

        }

        h1 {
            text-align: center;
            color: #000000;
        }

   

        button {
            background: #007BFF;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
        }

        button:hover {
            background: #0056b3;
        }

        .links {
            text-align: center;
            margin-top: 10px;
        }

        .links a {
            color: #007BFF;
            text-decoration: none;
        }

        .links a:hover {
            text-decoration: underline;
        }


        .welcome {
            margin-bottom: 30px;
        }

        .buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .button {
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 16px;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #0056b3;
        }

        .logout {
            margin-top: 30px;
        }

       
       
       
       
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table, th, td {
            border: 1px solid #242222;
            font-size: small;
        }
        th, td {
            padding: 10px;
            text-align: left;
        }
        th {
            background-color: #f4f4f4;
        }
 
        label { font-weight: bold; }
        input, select, button { width: 100%; padding: 10px; margin-top: 5px; border: 1px solid #ddd; border-radius: 4px; }
        button { background: #007BFF; color: white; cursor: pointer; }
        button:hover { background: #0056b3; }
        .nav-buttons { text-align: center; margin-top: 20px; }
        .nav-buttons a { padding: 10px 20px; background: #6c757d; color: white; text-decoration: none; border-radius: 4px; margin: 5px; }
        .nav-buttons a:hover { background: #5a6268; }


        .filters-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px; /* Espacement entre les filtres */
            align-items: center;
            margin-bottom: 20px;
        }

        .filters-container .form-group {
            margin-bottom: 0;
            flex: 1; /* Permet d'ajuster dynamiquement la taille des filtres */
            min-width: 150px; /* Largeur minimale */
        }


        .pagination {
        display: flex;
        justify-content: center;
        margin-top: 20px;
            }

        .pagination a {
            padding: 8px 12px;
            margin: 0 5px;
            text-decoration: none;
            background: #007BFF;
            color: white;
            border-radius: 4px;
        }

        .pagination a.active {
            background: #0056b3;
            font-weight: bold;
        }

        .pagination a:hover {
            background: #0056b3;
        }


        #floating-add-button {
            position:fixed; /* Toujours visible */
            text-align: center;
            width: 200px;
            bottom: 20px; /* Distance du bas de l'écran */
            right: 20px; /* Distance du côté droit */
            padding: 12px 20px; /* Espacement interne (padding) */
            background-color: #28a745; /* Couleur de fond (vert) */
            color: #ffffff; /* Couleur du texte */
            font-size: 30px; /* Taille du texte */
            font-weight: bold; /* Texte en gras */
            border: none; /* Supprimer la bordure par défaut */
            border-radius: 30px; /* Bord arrondi */
            cursor: pointer; /* Curseur "pointer" */
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Ombre du bouton */
            transition: all 0.3s ease; /* Animation lors du hover */
            z-index: 9999; /* Toujours au premier plan */
        }
        
        #floating-add-button:hover {
            background-color: #218838; /* Couleur plus foncée au survol */
            transform: translateY(-3px); /* Effet "léger décollage" */
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Ombre accentuée */
        }
        
        #floating-add-button:active {
            background-color: #1e7e34; /* Couleur encore plus foncée au clic */
            transform: translateY(1px); /* Bouton "enfoncé" */
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Réduction de l'ombre */
        }






        /* Conteneur du tableau avec scroll */
.table-container {
    max-height: 400px; /* Limite la hauteur du tableau */
    overflow-y: auto; /* Active le scroll vertical */
    border: 1px solid #2d2b2b; /* Bordure autour du tableau */
    margin-top: 20px; /* Espacement au-dessus */
    border-radius: 5px; /* Bord arrondi pour le conteneur */
}

/* Style pour conserver le tableau fixe */
.table-container table {
    width: 100%; /* Le tableau prend toute la largeur disponible */
    border-collapse: collapse; /* Pas d'espacement entre les cellules */
}

.table-container th, .table-container td {
    padding: 8px; /* Espacement interne des cellules */
    border: 1px solid #ddd; /* Ligne séparant chaque cellule */
    text-align: left; /* Alignement du texte */
}

.table-container th {
    background-color: #f4f4f4; /* Couleur d'en-tête */
    position: sticky; /* Fixe l'en-tête lors du scroll */
    top: 0; /* Positionne l'en-tête en haut */
    z-index: 2; /* Priorité sur le contenu du tableau */
}

        
/* Modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}



.form-group {
    margin-bottom: 15px;
}


/* body { font-family: Arial, sans-serif; padding: 20px; }  */
form { 
    max-width: 900px;
    margin: auto;
    padding: 20px; 
    background: hsl(263, 100%, 89%); 
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
 }


 .form-group { margin-bottom: 15px; }


.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}