/* Wrapper */
.airbnb-calendar-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Navigation bar */
.airbnb-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 15px 0;
    gap: 8px;
}

.airbnb-calendar-nav-btn {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.airbnb-calendar-nav-btn:hover {
    background-color: #e0e0e0;
}

.airbnb-calendar-nav-arrow {
    font-size: 16px;
    line-height: 1;
}

.airbnb-calendar-nav-text {
    font-size: 14px;
}

.airbnb-calendar-nav-title {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Calendar table */
.airbnb-calendar {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
}
.airbnb-calendar th,
.airbnb-calendar td {
    border: 1px solid #ccc;
    text-align: center;
    padding: 8px;
    width: 14.28%; /* 100% / 7 μέρες */
    box-sizing: border-box;
}

/* Empty cells (πριν την 1η μέρα) */
.airbnb-calendar td.empty {
    background-color: #fafafa;
    border: 1px solid #eee;
}

/* Availability colors */
.airbnb-calendar td.available {
    background-color: #dfffdc;
}
.airbnb-calendar td.booked {
    background-color: #ffdcdc;
}

/* Legend */
.airbnb-calendar-legend {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    font-size: 14px;
}
.airbnb-calendar-legend-item {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
}
.airbnb-calendar-legend-item.available {
    background-color: #dfffdc;
}
.airbnb-calendar-legend-item.booked {
    background-color: #ffdcdc;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .airbnb-calendar-nav {
        gap: 4px;
    }

    .airbnb-calendar-nav-btn {
        border-radius: 50%;
        width: 32px;
        height: 32px;
        padding: 0;
        justify-content: center;
    }

    .airbnb-calendar-nav-text {
        display: none;     /* μόνο βελάκια στο κινητό */
    }

    .airbnb-calendar-nav-arrow {
        font-size: 18px;
    }

    .airbnb-calendar-nav-title {
        font-size: 14px;
    }

    .airbnb-calendar th,
    .airbnb-calendar td {
        padding: 5px;
        font-size: 12px;
    }

    .airbnb-calendar-legend {
        flex-direction: column;
        gap: 8px;
    }
}
