#auto-lock-box {
    margin-left: 10px;
    font-family: Orbitron;
    color: white;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-around;
}

#auto-lock-label {
    width: 90%;
    padding-right: 5px;
}

#compact-mod-box {
    margin-left: 10px;
    display: block;
    font-family: Orbitron;
    color: white;
}

#compact-mod-box input {
    margin-right: 10px;
}

#option-box {
    display: none;
}

#option-box h3 {
    font-family: Orbitron;
    color: white;
}

#option-button {
    border: none;
    background: none;
    padding: 0;
    /* Enlever le padding par défaut */
    cursor: pointer;
    /* Changer le curseur au survol */
    outline: none;
    /* Enlever l'effet de focus par défaut */
    width: 15%;
    max-width: 50px;
    max-height: 50px;
    margin: 0;
}

#option-button-image {
    width: 100%;
    max-width: 50px;
    max-height: 50px;
}

#option-button-box {
    width: 100%;
    display: flex;
    justify-content: left;
    padding-left: 10px;
    margin-top: 10px;
    background: none;
    margin-bottom: 60px;
}


.title {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.mod1 {
    margin-bottom: 10px;
}

.mod2 {
    margin-bottom: 15px;
}

.separation {
    height: 3px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    color: white;
    background-color: white;
    margin-bottom: 15px;
}

.downloadContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-direction: column;
}

.optionBtn {
    background-color: #dddddd;
    /* Couleur de fond */
    color: rgb(0, 0, 0);
    /* Couleur du texte */
    font-family: Orbitron;
    border: none;
    /* Pas de bordure */
    padding: 7px 20px;
    /* Espacement interne */
    text-align: center;
    /* Centrage horizontal */
    text-decoration: none;
    /* Pas de soulignement */
    display: inline-block;
    font-size: 16px;
    border-radius: 10px;
    /* Coins arrondis */
    transition-duration: 0.4s;
    /* Durée de la transition */
    cursor: pointer;
    /* Curseur pointeur au survol */
    margin-top: 10px;
}

.optionBtn:hover {
    background-color: #000000;
    /* Couleur de fond au survol */
    color: rgb(255, 255, 255);
    /* Couleur du texte au survol */
}

.downloadLabel {
    color: white;
    font-family: Orbitron;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
}