/* Booking System Styles */
.booking-section {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
    padding: 0.5rem;
}

.calendar-header h3 {
    margin: 0;
    color: var(--color-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.day-name {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.calendar-day {
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:not(.empty):not(.disabled):hover {
    background-color: #e9ecef;
}

.calendar-day.today {
    border: 2px solid var(--color-primary);
    font-weight: 700;
}

.calendar-day.selected {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.calendar-day.disabled {
    color: #dee2e6;
    cursor: not-allowed;
}

.time-slots {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    animation: fadeIn 0.5s ease;
}

.time-slots h4,
.booking-form h4 {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 0.8rem;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.time-slot:hover,
.time-slot.selected {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.booking-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    animation: fadeIn 0.5s ease;
}

.booking-form form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
}

.booking-form input {
    padding: 1rem;
    border: 1px solid #ced4da;
    border-radius: 8px;
    width: 100%;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}