body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Contenu principal de la page */
.main-content {
    flex: 1; /* Prend l'espace disponible avant le footer */
}

.boutton {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s ease;
}
.boutton:hover {
    opacity: 0.8;
    font-weight: bold;
    box-shadow: 2px 2px 4px black;
}

.boutton-container {
    display: flex;
    justify-content: space-between; /* Distribue les boutons aux extrémités */
    width: 90%; /* Ajuste selon la largeur nécessaire */
    padding: 40px; /* Optionnel, pour ajouter un peu d'espace autour */
}

.boutton-container button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s ease;
}

.boutton-container button:hover {
    background-color: #45a049;
}

.boutton-mini {
    height: 30px;
    width: 150px;
    border-radius: 5px;
}

.mini-input-txt {
    width: 50px; 
    height: 25px;
}

.menu-container {
    padding: 50px;
    margin-top: 50px;
}

.menu-container h1 {
    margin-bottom: 40px;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Grille flexible */
    gap: 20px;
    justify-items: center;
    padding: 150px;
}

.menu button {
    width: 200px;
    height: 200px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu button:hover {
    background-color: #45a049;
    transform: scale(1.05); /* Effet de zoom au survol */
}

.menu button:active {
    background-color: #388E3C;
    transform: scale(0.98); /* Réduction légère au clic */
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(180, 180, 180);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    width: 80%;
    max-width: 1200px;
    min-height: 400px;
    /*max-height: 600px;*/
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.authentification {
    position: fixed;
    background-color: grey;
    color: white;
    width: 400px;
    height: 235px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 2px 2px 8px black;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.ul_stat {
    /*
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    */
    text-align: left;
    font-size: 22px;
    color: while;    
}

.btstat {
    padding: 10px 20px;
    font-size: 22px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #4e554eec;
    color: white;
    transition: background-color 0.3s ease;
}
.btstat:hover {
    background-color: #222322ec;
}

.stats {
    text-align: left;
    font-size: 22px;
    color: while;
}

footer {
    color: black;
    text-align: center;
    padding: 5px 0;
    position: relative;
    bottom: -50px;
    width: 100%;
}



