/* Custom CSS para Bingo Digitalizer */

/* Ocultar las flechas de los campos number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield; /* Standard */
  -moz-appearance: textfield; /* Firefox */
  text-align: center;
}

/* Animación de "Dauber" (rotulador de bingo circular) para no tapar el número */
.cell-marked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background-color: rgba(239, 68, 68, 0.45); /* Rojo translúcido */
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: daub 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    pointer-events: none;
    z-index: 0;
}

@keyframes daub {
    0% {
        width: 0%;
        height: 0%;
        opacity: 0;
    }
    100% {
        width: 85%;
        height: 85%;
        opacity: 1;
    }
}

/* Efecto de Fila Completada */
.row-completed-cell {
    background-color: rgba(250, 204, 21, 0.6) !important; /* bg-yellow-400/60 */
    border-color: rgb(234, 179, 8) !important;
    color: rgb(113, 63, 18) !important; /* text-yellow-900 */
    box-shadow: inset 0 0 15px rgba(234, 179, 8, 0.5);
    transition: all 0.3s ease;
}

.row-completed-cell::after {
    background-color: rgba(234, 179, 8, 0.5) !important; /* "rotulador" se vuelve amarillo dorado */
}
