/* ========================================================
   1. Premium Search Widget UI
======================================================== */
.hbs-premium-search-wrapper {
    background: #ffffff;
    padding: 10px 10px 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: inline-block;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
}

.hbs-premium-search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.hbs-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    flex: 1;
}

.hbs-icon {
    font-size: 20px;
    color: inherit; /* Premium Red/Pink tone */
}

.hbs-input-content {
    display: flex;
    flex-direction: column;
}

.hbs-input-content label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hbs-input-content input, 
.hbs-input-content select {
    border: none;
    background: transparent;
    font-size: 16px;
    color: #666;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
    box-shadow: none !important;
}

.hbs-divider {
    width: 1px;
    height: 40px;
    background: #eaeaea;
    margin: 0 10px;
}

.hbs-search-btn {
    background: linear-gradient(135deg, #e53935, #b71c1c);
    color: #ffffff !important;
    border: none;
    padding: 18px 35px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}


.hbs-search-btn i {
    color: #ffffff !important;
}


/* Responsive for Mobile */
@media (max-width: 768px) {
    .hbs-premium-search-wrapper {
        border-radius: 15px;
        padding: 20px;
    }
    .hbs-premium-search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .hbs-divider {
        width: 100%;
        height: 1px;
        margin: 15px 0;
    }
    .hbs-search-btn {
        margin-top: 20px;
        justify-content: center;
    }
}

/* ========================================================
   2. Room Inner Page - Premium Meal Plan Options UI
======================================================== */
.hbs-meal-plans {
    margin-bottom: 30px;
}

.hbs-meal-plans h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.hbs-meal-plan-card {
    display: block;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
}

.hbs-meal-plan-card input[type="radio"] {
    display: none; /* Hide default radio */
}

.hbs-meal-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hbs-meal-card-content .plan-name {
    font-weight: 600;
    font-size: 16px;
    color: #444;
}

.hbs-meal-card-content .plan-price {
    font-weight: bold;
    color: #27ae60; /* Green for price */
}

/* When the radio is checked, highlight the card */
.hbs-meal-plan-card input[type="radio"]:checked + .hbs-meal-card-content {
    border-color: #e53935;
    background: #fffafa;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.1);
}

.hbs-meal-plan-card input[type="radio"]:checked + .hbs-meal-card-content::after {
    content: '\f058'; /* FontAwesome Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    color: #e53935;
    font-size: 24px;
    background: white;
    border-radius: 50%;
}

/* Customize Flatpickr Calendar to match brand colors */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: #e53935 !important;
    border-color: #e53935 !important;
}

/**
 * assets/css/style.css
 * Clean Premium UI for Search Widget
 */

.hbs-premium-search-wrapper {
    background: #ffffff;
    padding: 1px 13px 0px 25px;
    border-radius: 60px; /* Fully rounded bar */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 50px auto;
}

.hbs-premium-search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hbs-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    flex: 1;
    transition: all 0.3s ease;
    border-radius: 35px;
}

.hbs-input-group:hover {
    background: #f8f9fa; /* Slight hover effect on the group */
}

/* Icon Styling */
.hbs-icon-box {
    font-size: 22px;
    color: #e53935; /* Brand Red */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hbs-input-content {
    display: flex;
    flex-direction: column;
}

.hbs-input-content label {
    font-size: 11px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

/* Remove default borders and styling from inputs */
.hbs-input-content input, 
.hbs-input-content select {
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 10px !important;
    margin: 0;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    width: 100%;
}

/* Vertical Divider */
.hbs-divider {
    width: 1px;
    height: 35px;
    background: #eee;
    margin: 0 5px;
}

/* Premium Search Button */
.hbs-search-btn {
    background: linear-gradient(135deg, #e53935, #b71c1c);
    color: #ffffff !important;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hbs-search-btn i {
    color: #fff !important;
    font-size: 18px;
}

.hbs-search-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .hbs-premium-search-wrapper {
        border-radius: 20px;
        padding: 20px;
    }
    .hbs-premium-search-form {
        flex-direction: column;
        align-items: flex-start;
    }
    .hbs-divider {
        display: none;
    }
    .hbs-input-group {
        width: 100%;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
    }
    .hbs-search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/**
 * assets/css/style.css
 * Premium Single Room UI Styles
 */

.hbs-room-premium-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
    font-family: 'Inter', sans-serif; /* Modern Font */
}

.hbs-room-details-col {
    flex: 1;
    min-width: 60%;
}

.hbs-room-booking-col {
    flex: 0 0 350px; /* Fixed sidebar width */
}

/* Typography & General */
.hbs-room-details-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hbs-divider-line {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 30px 0;
}

/* Amenities Grid */
.hbs-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.hbs-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #666;
}

.hbs-amenity i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #555;
}

.hbs-amenity span {
    font-size: 12px;
}

/* Board Basis (Radio Rows) */
.hbs-meal-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hbs-meal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hbs-meal-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hbs-meal-left input[type="radio"] {
    display: none; /* Hide default */
}

/* Custom Radio Button */
.hbs-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.hbs-meal-left input[type="radio"]:checked + .hbs-radio-custom {
    border-color: #00b894; /* Premium Green */
}

.hbs-meal-left input[type="radio"]:checked + .hbs-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #00b894;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hbs-meal-name {
    font-size: 15px;
    color: #444;
}

.hbs-meal-price {
    font-size: 14px;
    color: #888;
}

/* Total Summary Box */
.hbs-price-summary-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.hbs-summary-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.hbs-total-price {
    font-size: 22px;
    font-weight: bold;
    color: #2d3436;
}

/* -------------------------------------
   Right Sidebar (Calendar & Booking)
-------------------------------------- */
.hbs-booking-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: sticky;
    top: 20px;
}

.hbs-booking-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Override Flatpickr Inline Styles for Premium Look */
.flatpickr-calendar.inline {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Green (Available) & Red (Booked) Dates */
.flatpickr-day.hbs-available-date {
    color: #00b894;
    font-weight: 600;
}

.flatpickr-day.hbs-booked-date {
    color: #fff !important;
    background: #e53935 !important;
    border-color: #e53935 !important;
    opacity: 0.8;
    pointer-events: none; /* Cannot click booked dates */
}

/* Legend */
.hbs-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 12px;
    color: #666;
}

.color-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.color-dot.green { background: #00b894; }
.color-dot.red { background: #e53935; }

/* Book Now Button */
.hbs-book-now-btn {
    width: 100%;
    background: #00b894 !important;
    color: white !important;
    border: none !important;
    padding: 15px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hbs-book-now-btn:hover {
    background: #00a884 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.4);
}

/**
 * style.css
 * Exact Replication of the Provided Design
 */

.hbs-room-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Image Gallery */
.hbs-room-gallery {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hbs-gallery-img {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* Layout Body */
.hbs-room-body {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.hbs-room-left {
    flex: 1;
}

.hbs-room-right {
    width: 380px;
    position: sticky;
    top: 30px;
}

/* Left Column Styling */
.hbs-room-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.hbs-room-subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

.hbs-room-price-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.hbs-room-price-header h2 span {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.hbs-room-price-header p {
    font-size: 13px;
    color: #999;
}

.hbs-separator {
    height: 1px;
    background: #eaeaea;
    margin: 30px 0;
}

.hbs-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Amenities */
.hbs-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hbs-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
}

.hbs-amenity-item i {
    font-size: 22px;
    margin-bottom: 8px;
    color: #666;
}

.hbs-amenity-item span {
    font-size: 12px;
}

/* Board Basis Options */
.hbs-board-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hbs-board-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.hbs-radio-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hbs-radio-wrap input[type="radio"] {
    display: none;
}

.hbs-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.hbs-radio-wrap input[type="radio"]:checked + .hbs-radio-circle {
    border-color: #00b894;
}

.hbs-radio-wrap input[type="radio"]:checked + .hbs-radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #00b894;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hbs-board-name {
    font-size: 15px;
    color: #444;
}

.hbs-board-price {
    font-size: 14px;
    color: #777;
}

/* Live Summary Box */
.hbs-live-summary {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hbs-summary-left h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.hbs-summary-left p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.hbs-summary-right {
    text-align: right;
}

.hbs-summary-right span {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.hbs-summary-right strong {
    font-size: 22px;
    color: #333;
}

/* Right Column Booking Card */
.hbs-booking-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.hbs-calendar-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-align: center;
}

/* Calendar Customization (The Red & Green Circular Dates) */
.flatpickr-calendar.inline {
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

.flatpickr-day {
    border-radius: 50% !important; /* Make dates circular */
    margin: 2px !important;
}

/* Available Dates (Green) */
.flatpickr-day.hbs-date-available {
    background: #00b894;
    color: #fff;
    border-color: #00b894;
}

/* Booked Dates (Red) */
.flatpickr-day.hbs-date-booked {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
    opacity: 0.8;
}

/* Selected Range color override */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover {
    background: #34495e !important;
    border-color: #34495e !important;
    color: #fff !important;
}

.hbs-book-btn {
    width: 100%;
    background: #00b894 !important;
    color: white !important;
    border: none !important;
    padding: 16px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 25px;
    transition: 0.3s;
    cursor: pointer;
}

.hbs-book-btn:not(:disabled):hover {
    background: #00a884 !important;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.4);
}

.hbs-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 12px;
    color: #666;
}

.hbs-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.hbs-dot-green { background: #00b894; }
.hbs-dot-red { background: #e74c3c; }

/* Fully Responsive */
@media (max-width: 991px) {
    .hbs-room-gallery {
        flex-direction: column;
    }
    .hbs-gallery-img {
        height: 250px;
    }
    .hbs-room-body {
        flex-direction: column;
    }
    .hbs-room-right {
        width: 100%;
        position: static;
    }
}

/* Hide the input field used by Flatpickr since we use inline mode */
#hbs-inline-calendar {
    display: none !important;
}

/* Ensure the summary box looks clean */
.hbs-live-summary {
    background: #fdfdfd;
    border: 1px solid #eeeeee;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#hbs-dynamic-total {
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

/* Search Results Page Styles */
.hbs-search-results-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
}

.hbs-results-header {
    text-align: center;
    margin-bottom: 40px;
}

.hbs-results-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hbs-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.hbs-room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.hbs-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hbs-room-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.hbs-room-card-content {
    padding: 25px;
}

.hbs-room-card-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.hbs-card-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.hbs-card-price {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.hbs-card-price strong {
    font-size: 22px;
    color: #e53935;
}

.hbs-btn-book {
    display: block;
    text-align: center;
    background: #2d3436;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.hbs-btn-book:hover {
    background: #e53935;
    color: #fff;
}

.hbs-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fdfdfd;
    border-radius: 12px;
    border: 1px dashed #ccc;
}

.hbs-no-results i {
    font-size: 50px;
    color: #ccc;
    margin-bottom: 20px;
}

/* Premium Gallery Layout */
.hbs-room-gallery-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.hbs-main-image-wrap {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden; /* Important for zoom */
    background: #f0f0f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hbs-main-image-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

#hbs-main-view {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom effect on hover */
.hbs-main-image-wrap:hover #hbs-main-view {
    transform: scale(1.4);
}

/* Thumbnails */
.hbs-thumbnails-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.hbs-thumb {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hbs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.hbs-thumb:hover img, .hbs-thumb.active img {
    opacity: 1;
}

.hbs-thumb.active {
    border-color: #e53935;
}

/* Hide scrollbar for thumbs */
.hbs-thumbnails-wrapper::-webkit-scrollbar {
    height: 4px;
}
.hbs-thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* ========================================================
   Tooltip for Booked Dates
======================================================== */
.flatpickr-day.hbs-date-booked {
    position: relative;
}

/* Base style for tooltip body and arrow (Hidden by default) */
.flatpickr-day.hbs-date-booked::before,
.flatpickr-day.hbs-date-booked::after {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* Start slightly below */
    z-index: 9999;
    pointer-events: none;
}

/* Tooltip Text Body */
.flatpickr-day.hbs-date-booked::after {
    content: attr(data-tooltip);
    bottom: 120%;
    background-color: #2d3436;
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Tooltip Arrow pointing down */
.flatpickr-day.hbs-date-booked::before {
    content: '';
    bottom: 100%;
    border: 5px solid transparent;
    border-top-color: #2d3436;
    margin-bottom: -9px;
}

/* Show Tooltip smoothly on Hover */
.flatpickr-day.hbs-date-booked:hover::before,
.flatpickr-day.hbs-date-booked:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Slide up to position */
}

/* Available Dates - Green Circle */
.flatpickr-day.hbs-date-available {
    background-color: #00b894 !important;
    color: #fff !important;
    border-color: #00b894 !important;
}

/* Booked/Disabled Dates - Red Circle (Update this part) */
.flatpickr-day.hbs-date-booked,
.flatpickr-day.hbs-date-booked.flatpickr-disabled,
.flatpickr-day.hbs-date-booked.flatpickr-disabled:hover {
    background-color: #e74c3c !important; /* Premium Red */
    color: #fff !important;
    border-color: #e74c3c !important;
    opacity: 1 !important; /* Make it clearly visible */
    cursor: not-allowed !important;
}

/* Ensure circular shape for all custom dates */
.flatpickr-day.hbs-date-available,
.flatpickr-day.hbs-date-booked {
    border-radius: 50% !important;
}

/* Premium Horizontal Booking Bar with Left Icons */
.hbs-booking-bar-wrapper {
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
    border: 1px solid #eaeaea;
}

.hbs-horizontal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Flex item with Left Icon and Right Text */
.hbs-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
    position: relative;
    padding: 5px 15px;
    border-right: 1px solid #eaeaea;
}

.hbs-bar-item:last-child {
    border-right: none;
    padding-right: 0;
}

/* Icon Styling on Left Side */
.hbs-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hbs-accent-icon {
    font-size: 20px;
    color: #e53935; /* Premium Red Accent */
}

/* Text Container on Right Side */
.hbs-input-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hbs-input-content label {
    font-size: 11px;
    font-weight: 500;
    color: inherit;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
    padding-left: 10px;
}

/* Inputs styling */
.hbs-date-input {
    border: none !important;
    background: transparent !important;
    font-size: 15px !important;
    color: #333 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.hbs-input-content select {
    border: none;
    background: transparent;
    font-size: 15px;
    color: #333;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
    box-shadow: none !important;
    font-weight: 600;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

/* Submit Button Container styling */
.hbs-btn-container {
    border-right: none;
    padding-right: 0;
    flex: 0 0 auto;
}

.hbs-book-btn {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hbs-book-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

.hbs-book-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* CSS Tooltip for Booked Dates */
.flatpickr-day.hbs-date-booked {
    position: relative;
}

.flatpickr-day.hbs-date-booked::before,
.flatpickr-day.hbs-date-booked::after {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 9999;
    pointer-events: none;
}

.flatpickr-day.hbs-date-booked::after {
    content: attr(data-tooltip);
    bottom: 120%;
    background-color: #2d3436;
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.flatpickr-day.hbs-date-booked::before {
    content: '';
    bottom: 100%;
    border: 5px solid transparent;
    border-top-color: #2d3436;
    margin-bottom: -9px;
}

.flatpickr-day.hbs-date-booked:hover::before,
.flatpickr-day.hbs-date-booked:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive Mobile Layout */
@media (max-width: 991px) {
    .hbs-booking-bar-wrapper {
        border-radius: 15px;
    }
    .hbs-horizontal-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .hbs-bar-item {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding: 10px 0;
    }
    .hbs-bar-item:last-child {
        border-bottom: none;
    }
    .hbs-book-btn {
        justify-content: center;
    }
}

/* ========================================================
   Next-Level Luxury Hotel Booking Portal (Checkout UI)
======================================================== */

/* Page Background */
body.woocommerce-checkout {
    background-color: #f7f9fc !important; /* Very soft luxury gray */
    color: #2c3e50;
}

.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 60px auto;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

/* Hide WooCommerce default notices */
.woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-notices-wrapper {
    display: none !important;
}

/* Main Layout */
.woocommerce-checkout form.checkout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

/* ==========================================
   LEFT COLUMN: Customer Details (Clean White)
========================================== */
.woocommerce-checkout #customer_details {
    flex: 1;
    min-width: 400px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

/* Force Single Column for Billing & Additional Info */
.woocommerce-checkout .col2-set {
    display: block !important;
    width: 100% !important;
}
.woocommerce-checkout .col2-set .col-1, 
.woocommerce-checkout .col2-set .col-2 {
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin-bottom: 30px;
}

.woocommerce-checkout h3 {
    font-family: 'Playfair Display', Georgia, serif; /* Luxury Serif Font */
    font-size: 28px;
    color: #111827;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f4f4f5;
    padding-bottom: 15px;
}

.woocommerce-checkout label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

/* Premium Inputs */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: #111827 !important;
    border-radius: 6px !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02) !important;
    transition: all 0.3s ease;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus {
    border-color: #c5a059 !important; /* Luxury Gold Accent */
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15) !important;
    outline: none !important;
}

/* ==========================================
   RIGHT COLUMN: Summary Box (Dark VIP Look)
========================================== */
.woocommerce-checkout #order_review_heading {
    display: none;
}

.woocommerce-checkout #order_review {
    width: 450px;
    background: #111827; /* Very Dark Navy/Charcoal */
    padding: 50px 40px;
    border-radius: 16px;
    color: #f9fafb;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: sticky;
    top: 40px;
}

.woocommerce-checkout table.shop_table {
    border: none;
    width: 100%;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    background: transparent;
}

/* Room Name Styling */
.woocommerce-checkout table.shop_table tbody td.product-name {
    color: #ffffff;
    font-size: 22px;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.4;
    padding-bottom: 10px;
}

.woocommerce-checkout table.shop_table tbody td.product-total {
    color: #ffffff;
    font-size: 22px;
    text-align: right;
}

/* Hide Quantity (x1) */
.woocommerce-checkout .product-quantity {
    display: none !important;
}

/* Formatting the Booking Details (Check-in, Check-out etc.) */
.woocommerce-checkout dl.variation {
    margin-top: 20px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.woocommerce-checkout dl.variation dt {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.woocommerce-checkout dl.variation dd {
    font-size: 15px;
    color: #e5e7eb;
    margin-bottom: 15px;
}
.woocommerce-checkout dl.variation dd:last-child {
    margin-bottom: 0;
}
.woocommerce-checkout dl.variation p {
    margin: 0;
}

/* Subtotal row (hide it, keep only Total) */
.woocommerce-checkout table.shop_table tr.cart-subtotal {
    display: none !important;
}

/* Final Total Styling */
.woocommerce-checkout table.shop_table tfoot tr.order-total th,
.woocommerce-checkout table.shop_table tfoot tr.order-total td {
    border-top: 2px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 20px;
    color: #ffffff;
}

.woocommerce-checkout table.shop_table tfoot tr.order-total td {
    text-align: right;
    font-size: 32px;
    font-weight: 800;
    color: #c5a059; /* Luxury Gold for Total Price */
}

/* Payment Methods Area */
.woocommerce-checkout #payment {
    background: transparent;
    padding: 0;
    margin-top: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 25px;
    margin-bottom: 25px;
    color: #d1d5db;
}

/* PLACE ORDER BUTTON */
.woocommerce-checkout #payment .place-order {
    padding: 0;
}

.woocommerce-checkout #payment .place-order button {
    width: 100%;
    background: #c5a059; /* Gold Button */
    color: #ffffff;
    padding: 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-checkout #payment .place-order button:hover {
    background: #b4904b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .woocommerce-checkout form.checkout {
        flex-direction: column;
    }
    .woocommerce-checkout #order_review {
        width: 100%;
        padding: 30px;
        position: static;
    }
}

/* ========================================================
   Custom Premium Dropdowns & Adjacent Month Calendar Hide
======================================================== */

/* Hide adjacent month days in Flatpickr calendar */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    visibility: hidden !important; /* Hides dates from other months beautifully */
    pointer-events: none !important;
}

/* Custom Select Container */
.hbs-custom-select {
    position: relative;
    cursor: pointer;
}

/* Custom Select Trigger (Visible Box) */
.hbs-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: inherit;
    padding: 10px;
    user-select: none;
}

.hbs-dropdown-arrow {
    font-size: 12px;
    color: #888;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.hbs-custom-select.open .hbs-dropdown-arrow {
    transform: rotate(180deg);
}

/* Custom Select Options List (The Popover) */
.hbs-select-options {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eaeaea;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

/* Show options list smoothly */
.hbs-custom-select.open .hbs-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Option Item */
.hbs-option {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}

.hbs-option:last-child {
    border-bottom: none;
}

.hbs-option:hover {
    background: #f5f7fa;
    color: #1e3c72; /* Premium brand hover color */
}

/* Selected option highlight */
.hbs-option.selected {
    background: #e1ecf4;
    color: #1e3c72;
    font-weight: 700;
}

/* ========================================================
   Grouped Room-by-Rate Search Results UI
======================================================== */
.hbs-search-results-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.hbs-results-header {
    margin-bottom: 40px;
}

.hbs-results-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a2b4c; /* Premium Navy */
    margin-bottom: 5px;
}

.hbs-results-header p {
    color: #666;
    font-size: 15px;
}

.hbs-grouped-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Room Card Wrapper */
.hbs-room-grouped-card {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #eaeaea;
}

/* Card Left: Image */
.hbs-room-card-left {
    width: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.hbs-view-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 76, 0.5); /* Brand blue overlay */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    transition: 0.3s;
}

.hbs-room-card-left:hover .hbs-view-details-overlay {
    opacity: 1;
}

/* Card Right: Content & Rates */
.hbs-room-card-right {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hbs-room-info-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.hbs-room-info-header h3 a {
    color: #1a2b4c;
    text-decoration: none;
    transition: 0.2s;
}

.hbs-room-info-header h3 a:hover {
    color: #c5a059; /* Gold hover */
}

.hbs-room-capacity-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.hbs-room-capacity-meta i {
    color: #1a2b4c;
    margin-right: 5px;
}

/* Rates Grid Table */
.hbs-rates-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.hbs-rate-header {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hbs-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.hbs-rate-row:last-child {
    border-bottom: none;
}

.hbs-rate-basis {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.hbs-rate-basis i {
    color: inherit; /* Icons accent */
}

.hbs-rate-action-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hbs-calculated-price {
    font-size: 18px;
    font-weight: 700;
    color: inherit; /* Premium Green for total calculated rate */
}

/* Elegant Book Button */
.hbs-rate-book-btn {
    background: inherit;
    color: #ffffff;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.hbs-rate-book-btn:hover {
    background: #e53935; /* Red on hover */
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.2);
}

/* No Results Styling */
.hbs-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #ccc;
    margin-top: 30px;
}

.hbs-no-results i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.hbs-search-again-link {
    display: inline-block;
    margin-top: 15px;
    color: #e53935;
    font-weight: 700;
    text-decoration: underline;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .hbs-room-grouped-card {
        flex-direction: column;
    }
    .hbs-room-card-left {
        width: 100%;
        height: 220px;
    }
}

/* ========================================================
   Calendar Colors (Green for Available, Red for Booked, Gray for Past)
======================================================== */

/* Past Dates (Default Disabled) */
.flatpickr-day.flatpickr-disabled:not(.hbs-date-booked) {
    color: #cccccc !important;
    background: transparent !important;
    border-color: transparent !important;
}

/* Available Dates - Premium Green Circle */
.flatpickr-day.hbs-date-available {
    background-color: #00b894 !important;
    color: #ffffff !important;
    border-color: #00b894 !important;
    border-radius: 50% !important;
}

/* Hover effect for Available Dates */
.flatpickr-day.hbs-date-available:hover {
    background-color: #00a884 !important;
    border-color: #00a884 !important;
}

/* Booked Dates - Premium Red Circle */
.flatpickr-day.hbs-date-booked {
    background-color: #e74c3c !important;
    color: #ffffff !important;
    border-color: #e74c3c !important;
    opacity: 1 !important; 
    cursor: not-allowed !important;
    border-radius: 50% !important;
}

/* Selected Range Style (Dark Blue/Gray for selection) */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange,
.flatpickr-day.inRange {
    background: #1a2b4c !important; /* Navy Blue */
    border-color: #1a2b4c !important;
    color: #ffffff !important;
}
.flatpickr-months .flatpickr-month {
    height: 50px !important;
}

/* Standalone Availability Calendar Styles */
.hbs-standalone-calendar-wrapper {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
    display: inline-block;
}

.hbs-calendar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b4c;
    margin-bottom: 15px;
    text-align: center;
}

.hbs-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.hbs-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.hbs-dot-green { background: #00b894; }
.hbs-dot-red { background: #e74c3c; }

/* Ensure inline flatpickr looks clean */
.hbs-standalone-calendar-wrapper .flatpickr-calendar {
    box-shadow: none !important;
    border: none !important;
}

/* Premium Room Quantity Dropdown */
.hbs-room-qty-select {
    border: 1px solid #d1d5db !important;
    background: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    padding: 8px 30px 8px 15px !important; /* Extra padding on right for arrow */
    border-radius: 6px !important;
    outline: none !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234a5568" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.hbs-room-qty-select:hover {
    border-color: #1a2b4c !important; /* Highlights on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Ensure aligned layouts */
.hbs-rate-action-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ========================================================
   Standalone Calendar UI Enhancements (Donut/Gradient Fill & Tooltips)
======================================================== */

/* Modify Day Cell to fit text inside the circle */
.hbs-standalone-calendar-wrapper .flatpickr-day {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2 !important;
    border-radius: 50% !important;
}

/* The tiny text below the date */
.hbs-rooms-left-badge {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
    opacity: 0.95;
    white-space: nowrap;
}

/* Legend Gradient Dot */
.hbs-dot-gradient {
    background: linear-gradient(to top, #e74c3c 50%, #00b894 50%);
}

/* ========================================================
   Universal Premium Tooltip for ALL Dates
======================================================== */
.flatpickr-day[data-tooltip] {
    position: relative;
}

.flatpickr-day[data-tooltip]::before,
.flatpickr-day[data-tooltip]::after {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 9999;
    pointer-events: none;
}

.flatpickr-day[data-tooltip]::after {
    content: attr(data-tooltip);
    bottom: 110%;
    background-color: #1a2b4c; /* Deep Navy */
    color: #ffffff;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.flatpickr-day[data-tooltip]::before {
    content: '';
    bottom: 90%;
    border: 5px solid transparent;
    border-top-color: #1a2b4c;
    margin-bottom: -9px;
}

.flatpickr-day[data-tooltip]:hover::before,
.flatpickr-day[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}