
  <style>
 
  /* Espacement entre chaque champ du formulaire */
.form-group {
    margin-bottom: 20px;
}

/* Mise en gras des étiquettes */
.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #333333;
}

/* Champs de saisie */
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/*  Séparation plus grande pour le champ du choix de jour */
select.form-input {
    margin-top: 20px;
}

/* Bouton de soumission */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #45a049;
}

    /* Style global de la page */
    body {
        font-family: 'Arial', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4; /* Fond clair */
    }

    /* Conteneur principal */
    .table-container {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Style des tableaux */
    table {
        width: 48%;
        border-collapse: collapse;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* En-têtes des tableaux des participants */
.table thead th {
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #e1e1e1;
    background-color: #ff4d4d; /* rouge foncé */
    color: black;
}

/* En-têtes des listes d'attente */
.table thead th.liste-attente {
    background-color: #FFB74D; /* Orange clair */
    color: black;
}



    /* Lignes du tableau */
    .table tbody tr {
        transition: background-color 0.3s;
    }

    /* Lignes alternées */
    .table tbody tr:nth-child(odd) {
        background-color: #F5F5F5; /* Gris très clair */
    }
    .table tbody tr:nth-child(even) {
        background-color: #FFFFFF; /* Blanc */
    }

    /* Survol des lignes */
    .table tbody tr:hover {
        background-color: #E0E0E0; /* Gris clair */
    }

    /* Bordures des cellules */
    .table th, .table td {
        padding: 10px 12px;
        text-align: center;
        border: 1px solid #e1e1e1;
    }

    /* Titre de chaque section */
    h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #333333;
        text-align: center;
        text-transform: uppercase;
    }

    /* Amélioration des titres de section */
    #day1A h3, #day1B h3 {
        background-color: #4CAF50; /* Vert foncé */
        color: white;
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
	.popup-container {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.popup-buttons {
    margin-top: 15px;
}

/* Section places disponibles */
.places-disponibles {
    background-color: #ffffff; /* Fond blanc pour mettre en valeur */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Liste des places restantes */
#places_restantes ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.place-item {
    margin-bottom: 12px; /* Espacement entre les items */
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* Style des span affichant les places restantes */
.places-count {
    font-weight: bold;
    color: #4CAF50; /* Vert pour indiquer le nombre de places restantes */
}

/* Mise en forme du texte "Places disponibles" */
.places-disponibles p {
    font-size: 18px;
    font-weight: bold;
    color: #4CAF50; /* Vert foncé pour titre */
    margin-bottom: 15px;
}

/* Améliorations de la lisibilité */
.place-item strong {
    color: #FF4D4D; /* Rouge pour le nom du jour (Day 1A, Day 1B) */
}
/* Formulaire */
.form-inscription {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

/* Alignement des champs */
.form-group {
    margin-bottom: 20px;
}

/* Style des étiquettes */
.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Champs de saisie */
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Style des boutons radio */
.radio-group {
    display: flex;
    gap: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

/* Bouton d'inscription */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}
.table-auto th, .table-auto td {
        white-space: nowrap;
    }
</style>
