/* Modern Booking Styles */
.booking-header {
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow);
}

.book-nav-items li a {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: var(--transition);
}

.book-nav-items li a:hover {
    color: var(--primary-color) !important;
}

/* Override any conflicting styles */
.booking-widget iframe {
    border: none;
    border-radius: 0;
}

/* Ensure proper spacing for booking page */
body.booking-page {
    padding-top: 0;
}

/* Mobile responsiveness for booking */
@media (max-width: 768px) {
    .booking-widget-container {
        margin: 0 15px;
    }
    
    .booking-widget iframe {
        height: 600px;
    }
}

@media (max-width: 576px) {
    .booking-widget iframe {
        height: 500px;
    }
}