/* Stili specifici per la sezione Slots Chips (Evoluzione 3.0) */
.time-chips-grid, .slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.time-chip {
    padding: 0.8rem 1.2rem;
    background: var(--surface, #ffffff);
    border: 2px solid var(--border, #e2e8f0);
    border-radius: 8px;
    font-weight: 700;
    color: var(--primary, #0084c9);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 105px;
    text-align: center;
}

.time-chip:hover:not(.chip-disabled) {
    border-color: var(--primary, #0084c9);
    background: rgba(0, 132, 201, 0.08);
    transform: translateY(-2px);
}

.time-chip.chip-selected {
    background: var(--primary, #0084c9) !important;
    color: white !important;
    border-color: var(--primary, #0084c9) !important;
    box-shadow: 0 4px 12px rgba(0, 132, 201, 0.35);
}

.time-chip.chip-selected .chip-avail {
    color: rgba(255, 255, 255, 0.9) !important;
}

.time-chip.chip-disabled {
    background: #e2e8f0 !important;
    border-color: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    transform: none !important;
}

.chip-avail {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted, #718096);
}
