body {
    background: #f4f6f9;
}

.numero {
    width: 55px;
    height: 55px;
    margin: 4px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    font-weight:bold;
    font-size:14px;
}

.disponible {
    background:#28a745;
    color:white;
    cursor:pointer;
}

.seleccionado {
    background:#007bff;
    color:white;
}

.ocupado {
    background:#dc3545;
    color:white;
    cursor:not-allowed;
}

#grid {
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
}

#seleccionRandom {
    display:none;
    text-align:center;
}

.tag {
    display:inline-block;
    padding:10px 15px;
    margin:5px;
    background:#007bff;
    color:white;
    border-radius:20px;
    font-weight:bold;
}
#grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.numero {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;

    cursor: pointer;
    user-select: none;
}

/* colores */
.disponible {
    background: #28a745;
    color: white;
}

.seleccionado {
    background: #007bff;
    color: white;
}

.ocupado {
    background: #dc3545;
    color: white;
    cursor: not-allowed;
}
