.rifa-wrapper {
    margin: 20px 0;
}

/* GRID NÚMEROS */
.rifas-numeros {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-family: monospace;
    font-size: 15px;
}

.numero-rifa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease;
}

.numero-rifa:hover:not(.ocupado):not(.reservado):not(.seleccionado) {
    background-color: #e0e0e0;
    transform: scale(1.04);
}

/* Estados */
.numero-rifa.seleccionado {
    background-color: #28a745;
    color: #fff;
    border-color: #1e7e34;
}

.numero-rifa.ocupado {
    background-color: #cc0000;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.numero-rifa.reservado {
    background-color: #ff9800;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.8;
}

/* PAGINACIÓN */
.rifas-paginacion {
    margin-top: 15px;
    text-align: center;
}

.rifas-paginacion a {
    margin: 0 5px;
    text-decoration: none;
    color: #0073aa;
}

.rifas-paginacion strong {
    margin: 0 5px;
    font-weight: bold;
    color: #000;
}

/* CARRITO LATERAL */
.rifas-carrito {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
}

.rifas-carrito h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.rifas-carrito ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rifas-carrito li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4px 0;
    font-family: monospace;
}

.rifas-quitar {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 2px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.rifas-quitar:hover {
    background: #c82333;
}

/* BOTÓN COMPRAR */
.rifas-acciones {
    margin-top: 20px;
    text-align: center;
}

#rifas-comprar.rifas-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rifas-numeros {
        justify-content: center;
    }

    .numero-rifa {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .rifas-carrito {
        margin-top: 15px;
    }
}
