/* Conteneur principal */
.slots-machine-container {
    max-width: 90%;
    margin: 20px auto;
    padding: 15px;
    background: #212121;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    color: white;
}

.info-session {
    margin-bottom: 15px;
    color: #ddd;
    font-weight: bold;
}

/* Titres */
.slots-machine-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Niveau de difficulté et mise */
.formulaire-input-cat-roulette {
    display: flex;
    position: relative;
    width: fit-content;
    vertical-align: middle;
    margin:0 auto 15px auto;
}

.formulaire-input-cat-roulette label {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
    color: rgb(169, 169, 173);
    margin-top: 6px;
    margin-right: 10px;
    background: none;
}

.form-input-form-mbr-cat-roulette {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    font-size: 14px;
    padding: 8px 10px;
    width: fit-content;
    outline: none;
    background: rgb(26, 26, 26);
    border-radius: 8px;
    height: 36px;
    display: inline-block;
}

.formulaire-input-cat-roulette span {
    margin: 8px;
}

/* Reels */
.slots-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.slots-reel {
    width: 100px;
    height: 100px;
    background: #121212;
    color: #212121;
    font-size: 30px;
    font-weight: bold;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Messages de résultat */
.slots-result-ok, .slots-result-no {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    display: none;
    font-weight: bold;
}
.slots-result-ok { border: dashed lightgreen; color: white; }
.slots-result-no { border: dashed lightcoral; color: white; }

/* Bouton retour jeu */
.bouton-action { text-align: center; margin-top: 15px; }

/* Mobile */
@media (max-width: 800px){
	.bouton-trier { width: 90%; margin: 0px auto 0px auto; }
}


@media (max-width: 600px){	
    .slots-reel { width: 90px; height: 90px; font-size: 26px; }
    .slots-controls button, .btn-type-upload { width: 100%; margin: 5px 0; }
}
