/* ===== LIST WORKSHOP (Teacher Calendar) ===== */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .2s ease;
}

    .calendar-day:hover {
        background-color: #e9f2ff;
    }

    .calendar-day.disabled {
        cursor: not-allowed !important;
        color: #ccc !important;
        background-color: #f8f9fa !important;
        opacity: 0.5;
        pointer-events: none;
    }

    .calendar-day.weekend {
        background-color: #f8f9fa;
    }

    .calendar-day.selected {
        background-color: #d40000;
        color: white;
    }

.card-title {
    color: #d40000 !important;
}

#monthTitle {
    text-transform: capitalize;
}

.btn-light.disabled {
    cursor: not-allowed;
    background-color: #f1f1f1 !important;
    border-color: #ddd !important;
}

/* Touch targets mínimos de 44x44px para navegación del calendario */
.calendar [aria-label="Mes anterior"],
.calendar [aria-label="Mes siguiente"] {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
