        body {
            font-family: 'Arial', sans-serif;
            background-color: #2C2626;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
                display: flex;
    flex-flow: column;
        }

        form {
            background: linear-gradient(145deg, #ffffff, #e6e6e6);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    box-sizing: border-box;
    padding: 15px;
    display: flex;
    flex-flow: column;
    align-items: center;
        }

        h2 {
            color: #333;
            font-size: 24px;
            text-align: center;
            margin-bottom: 20px;
        }

        input[type="file"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            margin-top: 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
            display: inline-block;
            cursor: pointer;
        }

        input[type="submit"] {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #0056b3;
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        input[type="submit"]:hover {
            background-color: #004494;
        }

        .position{
                display: flex;
    flex-flow: row;
    margin-top: 50px;
    margin-bottom: 50px;
        }

        table {
            width: 100%; /* Utilise toute la largeur disponible */
            border-collapse: collapse; /* Élimine l'espace entre les bordures */
            margin: 20px 0; /* Ajoute un peu d'espace autour du tableau */
            font-size: 16px; /* Taille de police plus lisible */
            border: 1px solid #ccc; /* Bordure légère pour le tableau */
        }
        th, td {
            border: 1px solid #ccc; /* Bordures pour les cellules */
            padding: 8px 12px; /* Espacement à l'intérieur des cellules */
            text-align: left; /* Alignement du texte à gauche */
        }
        th {
            background-color: #f4f4f4; /* Couleur de fond pour les en-têtes */
            font-weight: bold; /* Rendre le texte en gras */
        }
        tr:nth-child(odd) {
            background-color: #f9f9f9; /* Couleur de fond pour les lignes impaires */
        }        
        tr:nth-child(even) {
            background-color: lightgrey; /* Couleur de fond pour les lignes impaires */
        }
        tr:hover {
            background-color: #e1f5fe; /* Couleur de fond au survol des lignes */
        }
        a {
            color: #0277bd; /* Couleur des liens */
            text-decoration: none; /* Supprimer le soulignement */
        }
        a:hover {
            text-decoration: underline; /* Souligner au survol */
        }