/* Calendar Styles */
.calendar-header {
    margin-bottom: 20px;
}

.calendar-grid {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.weekday {
    padding: 10px 5px;
    font-size: 0.875rem;
    color: #6c757d;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    padding: 15px 5px;
    text-align: center;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover:not(.past):not(.other-month):not(.inactive) {
    background-color: #e9ecef;
    cursor: pointer;
}

.calendar-day.today {
    background-color: #fff3cd;
    font-weight: bold;
}

.calendar-day.selected {
    background-color: #e4c45aff;
    color: white;
    font-weight: bold;
}

.calendar-day.past {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.calendar-day.other-month {
    background-color: #f8f9fa;
    color: #adb5bd;
}

.calendar-day.inactive {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

/* Time slots */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
}

.time-slot:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}

.time-slot.selected {
    background-color: #e4c45aff;
    color: white;
    border-color: #e4c45aff;
}

.time-slot.disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    color: #6c757d;
}
