/* --- Reset & Clean Old Styles --- */
.book_btn, .btn-book, .tour-book-btn {
    background-image: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-indent: 0 !important;
    width: auto !important;
    height: auto !important;
}

/* --- Force Alignment in the Right Column --- */
.facts_content_r {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
}

.facts_content_r > * {
    width: 100% !important;
    text-align: left; 
}

/* --- The Premium Button Style --- */
a.btn-book, a.book_btn, a.tour-book-btn, a[href*='#bookings'] {
    display: inline-block !important;
    margin: 25px auto !important; 
    padding: 14px 45px !important;
    background: #3575b9 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(53, 117, 185, 0.2) !important;
    cursor: pointer !important;
    min-width: 200px !important;
    float: none !important; 
}

a.btn-book:hover, a.book_btn:hover {
    background: #2860a0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(53, 117, 185, 0.3) !important;
    color: #fff !important;
}

.facts_content_r p {
    text-align: left !important;
}

@media (max-width: 768px) {
    .slide_container, .rslides, .hero-image-wrap, .rslides img, .slide_container img {
        height: 300px !important;
        object-fit: cover !important;
    }
}

/* --- 1. Targeted Destruction of ALL legacy blue box backgrounds --- */
.book_btn, div.book_btn, .btn-book-wrap, .tour-book-btn-container, 
p:has(a[href*='#bookings']), td:has(a[href*='#bookings']) {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
}

/* --- 2. Correct and Narrow Button Style --- */
a.btn-book, a.book_btn, a.tour-book-btn, a[href*='#bookings'] {
    display: inline-block !important;
    padding: 10px 30px !important; 
    background: #3575b9 !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 12px rgba(53, 117, 185, 0.2) !important;
    min-width: 140px !important; 
    width: auto !important;
    float: none !important;
    text-indent: 0 !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
}

.facts_content_r {
    display: block !important;
    text-align: left !important;
}

.facts_content_r > * {
    text-align: left !important;
}

/* --- Calendar Grid Styles --- */
.calendar-container { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-bottom: 30px; font-family: "Inter", sans-serif; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-header span { font-size: 1.2rem; font-weight: 700; color: #1e293b; }
.calendar-header button { background: #f1f5f9; border: none; padding: 8px 15px; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.calendar-header button:hover { background: #e2e8f0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.calendar-day-head { text-align: center; font-weight: 600; font-size: 0.8rem; color: #64748b; padding-bottom: 10px; }
.calendar-day { min-height: 80px; border-radius: 8px; border: 1px solid #f8fafc; padding: 8px; position: relative; transition: all 0.2s; cursor: default; }
.calendar-day.has-tour { background: #f0fdf4; border-color: #bcf0da; cursor: pointer; }
.calendar-day.has-tour:hover { transform: scale(1.05); z-index: 10; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.calendar-day.selected { background: #10b981 !important; border-color: #059669 !important; color: #fff !important; }
.calendar-day.selected .price-tag { color: #fff !important; }
.day-num { font-weight: 500; font-size: 0.9rem; }
.price-tag { display: block; font-size: 0.75rem; color: #047857; font-weight: 700; margin-top: 5px; }
.calendar-legend { display: flex; gap: 20px; margin-top: 15px; font-size: 0.8rem; color: #64748b; border-top: 1px solid #f1f5f9; padding-top: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
.dot.available { background: #10b981; }
