#spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Bouton rond */
    border: none;
    background-color: #ff6600;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#spin:hover {
    background-color: #cc5200;
}

#spin:active {
    border-color: red !important;
}

.wheel{
    position: relative; 
    width: 500px; 
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    z-index: 0; /* Au-dessus des confettis mais derrière le modal */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -35px;
}

button#spin:disabled {
    background: #b7b7b7;
}

.spin-load {
    background: #b7b7b7 !important;
}


@media only screen and (max-width: 480px) {
    canvas {
        width: 350px;
        height: 350px;
    }

    .wheel {
        position: relative;
        width: auto;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        z-index: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 667px) {
    canvas {
        width: 350px;
        height: 350px;
    }

    .wheel {
        margin-left: -20px;
    }
}




/* CSS 2 */
#spin2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Bouton rond */
    border: none;
    background-color: #ff6600;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#spin2:hover {
    background-color: #cc5200;
}

#spin2:active {
    border-color: red !important;
}

.wheel2{
    position: relative; 
    width: auto; 
    height: auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 0; /* Au-dessus des confettis mais derrière le modal */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
}

button#spin2:disabled {
    background: #b7b7b7;
}

.spin-load2 {
    background: #b7b7b7 !important;
}