.airbnb-calendar-wrapper {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.month-calendar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.month-header {
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #484848;
}

.day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: #484848;
    padding: 5px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.9em;
    cursor: default;
    transition: background-color 0.2s;
}

.day.empty {
    background: none;
}

.day.available {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.day.booked {
    background-color: #ffebee;
    color: #c62828;
}

.day.not-available {
    background-color: #f5f5f5;
    color: #757575;
}

.day.past {
    background-color: #f5f5f5;
    color: #bdbdbd;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.available {
    background-color: #e8f5e9;
    border: 1px solid #2e7d32;
}

.legend-color.booked {
    background-color: #ffebee;
    border: 1px solid #c62828;
}

.legend-color.not-available {
    background-color: #f5f5f5;
    border: 1px solid #757575;
}

.legend-text {
    font-size: 0.9em;
    color: #484848;
}

.booking-button {
    text-align: center;
    margin-top: 20px;
}

.booking-button .button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff5a5f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.booking-button .button:hover {
    background-color: #ff3b41;
}

.calendar-loading,
.calendar-error {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.calendar-loading {
    background-color: #e3f2fd;
    color: #1976d2;
}

.calendar-error {
    background-color: #ffebee;
    color: #c62828;
}

@media (max-width: 600px) {
    .airbnb-calendar-wrapper {
        margin: 10px;
    }

    .month-calendar {
        padding: 10px;
    }

    .day {
        font-size: 0.8em;
    }

    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
} 