﻿/* 🔹 Hacer que el modal sea completamente transparente */
.modal-content {
    background: transparent !important;
    border: none;
    box-shadow: none !important;
    justify-content: center;
    align-items: center;
}

/* 🔹 Centrar el título */
.modal-header {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    background: transparent !important;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: auto;
}

/* 🔹 Asegurar que solo se vea la ruleta y los botones */
.modal-body {
    text-align: center;
    background: transparent !important;
    padding: 0;
}

/* 🔹 Hacer que el fondo oscuro de la pantalla tenga transparencia */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7) !important;
}
/* 🔹 Estilizar el mensaje de premio */
#resultado {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-top: 10px;
}

/* 🔹 Flecha indicadora */
.flecha-indicador {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
}

/* 🔹 Posicionamiento relativo para la ruleta */
.ruleta-container {
    position: relative;
    display: inline-block;
}

/* 🔹 Botón Girar estilizado */
#spinButton {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    font-size: 18px;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

#spinButton:hover {
    background-color: #ffb700;
}

/* 🔹 Botón Aplicar Código */
#applyCodeButton {
    background-color: red;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    font-size: 18px;
    border: none;
    margin-top: 10px;
}

#applyCodeButton:hover {
    background-color: darkred;
}

