/* ////////////////////////////////////////////////////////
   SECTION : CREATE GAME UI
   //////////////////////////////////////////////////////// */

.create-game-card {
    width: 100%;
    max-width: 450px;
    border-left: 5px solid var(--or-lutte); /* Différent du login pour varier */
}

.info-box {
    background-color: #eef6ff;
    border-radius: 4px;
    padding: 10px;
    color: #444;
    border: 1px solid #d0e3ff;
}

.btn-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--noir);
}

/* Style spécifique pour le select */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    appearance: none;
}