/* ===== ZUSÄTZLICHE STYLES FÜR UPDATES ===== */

/* Wochenendpreis und Wochenrabatt - kleinere Schrift */
.price-note.small {
    font-size: 0.85rem;
    color: var(--color-text-secondary, #666);
    margin-bottom: 0.3rem;
}

/* Airbnb Button Hover-Effekt */
.btn-airbnb:hover {
    background-color: #E00007 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

/* iCal Kalender Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--color-bg-alt, #f8f9fa);
    border-radius: 8px;
}

.calendar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary, #2C3E50);
}

.calendar-nav {
    background-color: var(--color-accent, #E67E22);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background-color: #D35400;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 2rem;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--color-text-secondary, #666);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available {
    background-color: #E8F5E9;
    color: #2E7D32;
    cursor: pointer;
}

.calendar-day.available:hover {
    background-color: #C8E6C9;
    transform: scale(1.05);
}

.calendar-day.booked {
    background-color: #FFEBEE;
    color: #C62828;
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: var(--color-accent, #E67E22);
    color: white;
    border-color: #D35400;
}

.calendar-day.today {
    border-color: var(--color-primary, #2C3E50);
    font-weight: 600;
}

.calendar-error {
    padding: 2rem;
    text-align: center;
    background-color: #FFF3E0;
    border-radius: 8px;
    color: #E65100;
}

.calendar-error p {
    margin: 0.5rem 0;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .calendar-grid {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
    
    .calendar-weekday {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .calendar-nav {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .calendar-title {
        font-size: 1.1rem;
    }
}

/* Airbnb-Link Container */
.airbnb-link p {
    font-size: 1rem;
    color: var(--color-text, #333);
    margin-bottom: 0.5rem;
}

.calendar-container-dual {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.calendar-month {
    flex: 1;
    min-width: 280px;
}

.calendar-nav-side {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #667eea;
    font-weight: bold;
    margin-top: 50px;
}

.calendar-nav-side:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: scale(1.1);
}

.calendar-nav-side:active {
    transform: scale(0.95);
}

/* Mobile: Verberge Navigation und zeige Monate untereinander */
@media (max-width: 768px) {
    .calendar-container-dual {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .calendar-nav-side {
        display: none;
    }
    
    .calendar-month {
        width: 100%;
    }
}
