body {
    background: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
}

.log {
    display: grid;
    gap: 15px;
    margin: auto;
    padding: 20px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.7);
    border: 3px solid rgb(1, 118, 177);
    border-radius: 15px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

input {
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: rgb(1, 118, 177);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: rgb(1, 118, 177);
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

.thankyou-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.thankyou-message {
    background-color: rgba(0, 0, 0, 0.588);
    border: 5px solid rgb(1, 118, 177);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.thankyou-message h1,
.thankyou-message p {
    color: #333;
    margin: 0 0 20px 0;
}

.thankyou-message a {
    color: rgb(1, 118, 177);
    text-decoration: underline;
}

form input {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    color: rgb(0, 0, 0);
    background-color: rgba(205, 205, 205, 0.7);
    border: 1px solid #00000078;
    padding: 8px;
    text-align: left;
}

th {
    background-color: rgb(1, 118, 177);
}

h1 {
    color: rgb(0, 0, 0);

}

.bouton {
    display: inline-block;
    /* Les boutons seront affichés côte à côte */
    padding: 20px 300px;
    /* Taille de padding réduite */
    text-align: center;
    background: transparent;
    position: relative;
    transition: all .2s;
    overflow: hidden;
    color: #000000;
    border-radius: 30px;
    box-shadow: 0px -0px 0px 0px rgba(143, 64, 248, .5), 0px 0px 0px 0px rgba(39, 200, 255, .5);
    margin-right: 25px;
    /* Ajoutez un peu d'espace entre les boutons */
    font-size: 0.8em;
    /* Réduisez la taille de la police si nécessaire */
}

.bouton::after {
    content: '';
    width: 1600px;
    /* Vous pourriez vouloir réduire cette taille */
    height: 1600px;
    /* Vous pourriez vouloir réduire cette taille */
    position: absolute;
    top: -50px;
    left: -100px;
    background-image: linear-gradient(225deg, #27d86c 0%, #26caf8 50%, #c625d0 100%);
    z-index: -1;
    transition: all .5s;
}

/* Ajoutez du style pour réduire la taille des boutons après un hover */
.bouton:hover::after {
    width: 800px;
    /* Taille réduite pour l'effet hover */
    height: 800px;
    /* Taille réduite pour l'effet hover */
    transform: rotate(150deg);

}

.bouton:hover {
    transform: translate(0, -6px);
    box-shadow: 10px -10px 25px 0px rgba(143, 64, 248, .25), -10px 10px 25px 0px rgba(39, 200, 255, .25);
}

.confirmation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: 1px solid #000;
    background-color: #fff;
    text-align: center;
}

.editable {
    background-color: white;
    /* Fond blanc */
    border: 1px solid #ccc;
    /* Bordure légère */
    padding: 5px;
    /* Un peu de rembourrage */
}

form {
    display: grid;
    gap: 10px;
    margin: 0 auto;
    padding: 20px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.8);
    border: 3px solid rgb(1, 118, 177);
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.nombre_personnes {
    text-align: center;
    /* This will center the text in the 'Nombre de personnes' column */
}

td.nombre_personnes {
    text-align: center;
    /* Ensure we are targeting the td elements with this class */
}

.etat-valide {
    color: green;

}

.etat-utilise {
    color: rgb(139, 91, 0);

}

.etat-expire {
    color: red;

}