/**
 * Calendar Module Styles
 */

.calendar-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.calendar-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

#calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#calendar {
    min-height: 300px;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background: #10b981;
}

.legend-color.occupied {
    background: #ef4444;
}

.legend-color.selected {
    background: #3b82f6;
}

@media (max-width: 768px) {
    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #calendar-container {
        padding: 1rem;
    }
}
