#gameCanvas {
    width: 100%;       /* s’adapte à la largeur du conteneur */
    max-width: 800px;  /* largeur maximale */
    aspect-ratio: 4 / 3; /* ratio fixe */
    height: auto;      /* ajuste automatiquement la hauteur */
    display: block;
    margin: 0 auto;
    background: black; /* fallback si l’image ne charge pas */
}

.info-session {
    margin-bottom: 15px;
    color: #ddd;
    font-weight: bold;
}

.poker-result-ok, .poker-result-no {
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}
.poker-result-ok { border: dashed lightgreen; color: white; max-width: 600px; margin: 5px auto; }
.poker-result-no { border: dashed lightcoral; color: white; max-width: 600px; margin: 5px auto; }

.jeux-ranking-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap:10px; }
.jeux-ranking-entry { padding:5px; border:1px solid #444; border-radius:5px; background:#222; color:white; }
.jeux-highlight { border-color:#f2af70; background:#333; }

.bouton-action {
    margin: -7px 0 0 10px;
}

.formulaire-input-cat-roulette {
    display: inline-flex;
    position: relative;
    width: fit-content;
	vertical-align: middle;
	margin-top: 15px;
}

.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;
}