/*** Calendar ***/
.calendar-grid {
    max-width: 400px;
    margin: 0 auto;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 5px;
}

.weekday {
    padding: 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-header {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.calendar-day {
    text-align: center;
    padding: 10px;
    border: 1px solid #dee2e6;
    cursor: pointer;
    transition: background-color 0.3s;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.available:hover {
    background-color: #e9ecef;
}

.calendar-day.selected {
    background-color: #DAA520;
    color: white;
}

.calendar-day.past {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.calendar-day.empty {
    background-color: transparent;
    border: none;
    cursor: default;
}

@media (max-width: 576px) {
    .calendar-grid {
        max-width: 100%;
    }
    .calendar-day, .weekday {
        padding: 5px;
        min-height: 30px;
        font-size: 0.8rem;
    }
    .calendar-weekdays, .calendar-days {
        gap: 2px;
    }


}
