﻿.cuadricula-numeros {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(38px, 1fr));
    gap: 6px;
    justify-content: center;
}

.numero-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
}

    .numero-item:hover {
        background-color: #f3f4f6;
        transform: scale(1.05);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

.numero-disponible {
    background-color: #ffffff;
}

.numero-ocupado {
    background-color: #ef4444;
    color: white;
    border-color: #ef4444;
    cursor: not-allowed;
}

    .numero-ocupado:hover {
        transform: none;
        box-shadow: none;
    }

.numero-seleccionado {
    background-color: #4f46e5 !important;
    color: white !important;
    border-color: #4f46e5 !important;
    transform: scale(1.05);
}
