.roulette-wrapper {
    text-align: center;
    margin: 20px auto;
}

.roulette-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: auto;
}

#roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 4s cubic-bezier(0.33, 1, 0.68, 1);
    transform: rotate(0deg);
}

.info-session {
    margin-bottom: 15px;
    color: #ddd;
    font-weight: bold;
}

.roulette-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid yellow;
    transform: translateX(-50%);
    z-index: 10;
}

.roulette-controls {
    text-align: center;
    margin-top: 20px;
}

.roulette-controls label {
    margin-right: 15px;
}

#roulette-result {
    margin: 15px 0px 15px 0px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.roulette-result-ok {
    color: green;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}

.roulette-result-no {
    color: red;
    font-weight: bold;
    margin-top: 10px;
    display: none;
}

/* Classement */
.roulette-rank { display: block; font-size: 1.2em; margin-bottom: 2px; }
.roulette-player { display: block; margin-bottom: 2px; }
.roulette-score { display: block; font-size: 0.9em; color: #f2af70; }
.roulette-score span { color: lightgreen; }

.formulaire-input-cat-roulette {
    display: inline-flex;
    position: relative;
    width: fit-content;
	vertical-align: middle;
}

.formulaire-input-cat-roulette label {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
    color: rgb(169, 169, 173);
    margin-top: 6px;
    background: none;
}

.formulaire-input-cat-roulette span {
    margin: 8px 0px 0px 10px;
}

.form-input-form-mbr-cat-roulette {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 10px 10px 10px 40px;
    width: fit-content;
    outline: none;
    background: rgb(26, 26, 26);
    border-radius: 8px;
    height: 38px;
	display: inline-block;
}

/* Mobile */
@media (max-width: 800px){
	.bouton-trier { width: 90%; margin: 0px auto 0px auto; }
}

@media (max-width:600px){
    .roulette-ranking-grid { grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); }
}

