/* ruleta.css */

.ruleta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

canvas {
    border: 5px solid #333;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 20px;
}

button#girar {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: #e74c3c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button#girar:hover {
    background: #c0392b;
}

#resultado {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

#tiradas-restantes {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}