@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

/* ==========================================================================
   WorldMeetings Design Tokens
   Single source of truth for colours, spacing, elevation, and radius.
   Reference this file FIRST in all stylesheets.
   ========================================================================== */

:root {
    /* Primary brand palette */
    --wm-primary: #346132;
    --wm-primary-rgb: 52, 97, 50;
    --wm-primary-light: #e9f1e9;
    --wm-primary-lighter: #c6d9c6;
    --wm-green: #3AAA35;
    --wm-green-rgb: 58, 170, 53;
    --wm-yellow: #D3D800;
    --wm-yellow-rgb: 211, 216, 0;
    --wm-ca-primary: #5856d6;
    /* Semantic backgrounds & text */
    --wm-success-bg: #e2f4ed;
    --wm-success-text: #0D380A;
    --wm-warning-bg: #fff3cd;
    --wm-warning-text: #92400e;
    --wm-danger-bg: #fcebeb;
    --wm-danger-text: #902C36;
    --wm-info-bg: #dbeafe;
    --wm-info-text: #1d4ed8;
    /* Neutrals */
    --wm-muted: #5d5d5d;
    --wm-gray: #6c757d;
    --wm-border: #dee2e6;
    --wm-border-light: #c6d9c6;
    --wm-surface: #f8f9fa;
    --wm-body-bg: #e6F4e5;
    /* Elevation */
    --wm-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --wm-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Radius scale */
    --wm-radius-sm: 0.375rem;
    /* 6px  */
    --wm-radius-md: 0.5rem;
    /* 8px  */
    --wm-radius-lg: 0.75rem;
    /* 12px */
    --wm-radius-xl: 1rem;
    /* 16px */
    --wm-radius-pill: 50rem;
    /* Legacy aliases (maintained for backward compatibility) */
    --color-primary: var(--wm-primary);
    --color-ca-primary: var(--wm-ca-primary);
    --color-primary-light: var(--wm-primary-light);
    --border-primary-color-lighter: var(--wm-primary-lighter);
    --text-dark-light: var(--wm-muted);
    --color-warning: var(--wm-warning-bg);
    --color-success: var(--wm-success-bg);
    --color-danger: var(--wm-danger-bg);
    --color-primary-gray: #f0f0f0;
    --wm-color-header: #4E6E50;
}
/* ==========================================================================
   WorldMeetings Shared Utility Classes
   One-to-one replacements for common inline-style patterns.
   Load after Bootstrap and before project-specific CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Button reset (icon-only / invisible button pattern)
   -------------------------------------------------------------------------- */
.btn-icon {
   background: none;
   border: none;
   padding: 0;
   cursor: pointer;
   color: inherit;
}

/* --------------------------------------------------------------------------
   Font-size utilities (rem-based, accessible)
   -------------------------------------------------------------------------- */
.fs-xs {
   font-size: 0.75rem !important;
}

/* 12px */
.fs-sm {
   font-size: 0.875rem !important;
}

/* 14px */
.fs-xxs {
   font-size: 0.6875rem !important;
}

/* 11px */
.fw-medium {
   font-weight: 500 !important;
}

/* --------------------------------------------------------------------------
   Form & input utilities
   -------------------------------------------------------------------------- */
.wm-input-lg {
   height: 4rem;
}

/* --------------------------------------------------------------------------
   Divider / separator utilities
   -------------------------------------------------------------------------- */
.wm-hr-dashed {
   border-top: 2px dashed #ffffff;
}

.wm-hr-faded {
   background-color: #21252930 !important;
}

/* --------------------------------------------------------------------------
   Card & table utilities
   -------------------------------------------------------------------------- */
.wm-summary-card {
   background-color: #e9f1e929;
}

.wm-table-header {
   color: var(--wm-primary);
}

.wm-table-header-color {
   color: var(--wm-color-header);
}

/* --------------------------------------------------------------------------
   Button & action utilities
   -------------------------------------------------------------------------- */
.wm-btn-clean {
   text-decoration: none;
   background: none;
   border: none;
   padding: 0;
   cursor: pointer;
}

/* --------------------------------------------------------------------------
   Empty-state utilities
   -------------------------------------------------------------------------- */
.wm-empty-icon {
   width: 50px;
   height: 50px;
}

.wm-empty-text {
   max-width: 400px;
}

/* --------------------------------------------------------------------------
   Scroll & overflow utilities
   -------------------------------------------------------------------------- */
.wm-scrollable {
   max-height: 70vh;
   overflow-y: auto;
}

/* --------------------------------------------------------------------------
   Textarea utilities
   -------------------------------------------------------------------------- */
.wm-textarea {
   min-height: 123px;
}

/* --------------------------------------------------------------------------
   Background utilities
   -------------------------------------------------------------------------- */
.bg-white {
   background-color: #fff !important;
}

/* --------------------------------------------------------------------------
   Search utilities
   -------------------------------------------------------------------------- */
.wm-search-input {
   min-width: 350px;
}

/* --------------------------------------------------------------------------
   Semantic badge utilities (token-driven)
   -------------------------------------------------------------------------- */
.badge-open {
   background-color: var(--wm-success-bg);
   color: var(--wm-success-text);
}

.badge-closed {
   background-color: var(--wm-surface);
   color: #4A4F54;
}

.badge-warning {
   background-color: var(--wm-warning-bg);
   color: var(--wm-warning-text);
}

.badge-danger {
   background-color: var(--wm-danger-bg);
   color: var(--wm-danger-text);
}

.badge-info {
   background-color: var(--wm-info-bg);
   color: var(--wm-info-text);
}

/* --------------------------------------------------------------------------
   Dropdown utilities
   -------------------------------------------------------------------------- */
.dropdown-min-w-8 {
   --cui-dropdown-min-width: 8rem;
}

/* --------------------------------------------------------------------------
   Height & z-index utilities
   -------------------------------------------------------------------------- */
.max-h-25rem {
   max-height: 25rem;
}

.max-h-400 {
   max-height: 400px;
}

.h-365px {
   min-height: 365px;
   max-height: 365px;
}

.z-1050 {
   z-index: 1050;
}

.min-h-60rem {
   min-height: 60rem;
}

.min-vh-75{
    min-height: 75.5rem;
}

.max-h-68rem {
   max-height: 68rem;
}

.max-h-main-chat {
    height: calc(100vh - 15.5rem);
}

.w-36 {
    width: 36%;
}

.w-65rem {
    width: 65rem;
}

.h-34px{
    height: 34px;
}

.ps-2-4 {
    padding-left: 2.4rem;
}

.rounded-16px {
    border-radius: 16px;
}

.w-320px {
    width: 320px;
}

.top-minus-4 {
    top: -4px !important;
}

.map-height-86 {
    height: 86.6vh;
}

.offcanvas.offcanvas-bottom.map-view-offcanvas {
    height: 93vh;
}

/* --------------------------------------------------------------------------
   Animation utilities
   -------------------------------------------------------------------------- */
.shake {
   animation: shake 0.2s;
}

@keyframes shake {
   0% {
      transform: translateX(0);
   }

   25% {
      transform: translateX(-2px);
   }

   50% {
      transform: translateX(2px);
   }

   75% {
      transform: translateX(-2px);
   }

   100% {
      transform: translateX(0);
   }
}

/* --------------------------------------------------------------------------
   NexSys / LocationManagement inline-style replacements
   -------------------------------------------------------------------------- */

/* Dashboard icon positioning */
.dash-icon-pos {
   position: absolute;
   top: -.5rem;
   right: 1rem;
}

.dash-icon-pos-sm {
   position: absolute;
   top: -.3rem;
   right: .5rem;
}

.dash-icon-pos-xs {
   position: absolute;
   top: -.5rem;
   right: .2rem;
}

/* Tree-view indent */
.tree-indent {
   padding-left: 2rem;
}

/* Chat bubble */
.chat-bubble {
   width: 45%;
}

/* Chat messages container */
.chat-messages {
   height: 300px;
   max-height: 350px;
}

/* Photo list actions overlay */
.photo-actions {
   position: absolute;
   top: 10px;
   right: 10px;
}

/* Min-height utilities */
.min-h-300 {
   min-height: 300px;
}

.min-h-screen-2 {
   min-height: calc(100vh - 2rem);
}

.min-h-50vh {
   min-height: 50vh;
}

/* Progress bar thin variant */
.progress-thin {
   height: 6px;
}

/* Width utilities */
.w-5rem {
   width: 5rem;
}

.w-60px {
   width: 60px;
}

.w-92 {
   width: 92%;
}

.w-86 {
   width: 86%;
}

.w-80 {
   width: 80%;
}

.w-45 {
   width: 45%;
}

/* Max-height & overflow */
.max-h-300 {
   max-height: 300px;
}

/* Cursor */
.cursor-pointer {
   cursor: pointer;
}

/* --------------------------------------------------------------------------
   Modal utilities
   -------------------------------------------------------------------------- */
.modal-height-90vh {
   height: 90vh;
   margin: 5vh auto;
}

/* --------------------------------------------------------------------------
   Inline-style replacement utilities (audit-driven additions)
   -------------------------------------------------------------------------- */

/* Font size 0.85em — used for price multiplier annotations */
.fs-085 {
   font-size: 0.85em !important;
}

.fs-10 {
    font-size: 10px !important;
}
/* Height: fit-content — used for city name badges */
.h-fit {
   height: fit-content !important;
}

/* Rounded bottom corners (tabs/nav) */
.wm-rounded-bottom-11 {
   border-bottom-left-radius: 11px !important;
   border-bottom-right-radius: 11px !important;
}

/* Tab nav padding */
.wm-nav-padded {
   padding: 0.5rem 1rem;
}

/* Large decorative icon (FAQ section) */
.wm-deco-icon-lg {
   font-size: 9rem;
   right: 5px;
   bottom: -23px;
   z-index: 0;
   color: #d3d3d336;
}

/* Z-index level 1 */
.z-1 {
   z-index: 1;
}

/* List item header padding override */
.wm-list-item-padded {
   padding: 1rem !important;
}

/* Dropdown scrollable */
.wm-dropdown-scroll {
   max-height: 300px;
   overflow: auto;
}

/* Spinner alignment */
.wm-spinner-align {
   margin-top: 2px;
}

/* Font weight semi-medium (410) */
.fw-semi-medium {
   font-weight: 410 !important;
}
/* ==========================================================================
   Booking-scoped overrides (loaded only when body has .wm-booking class)
   Extracted from Booking/site.css to reduce global namespace pollution.
   ========================================================================== */
.wm-booking .btn-success,
.wm-booking.btn-success {
    color: white !important;
    background-color: var(--color-primary);
}
.wm-booking .btn-outline-success,
.wm-booking.btn-outline-success {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    background-color: white !important;
}
.wm-booking .btn-success:focus,
.wm-booking .btn-outline-success:focus,
.wm-booking .form-check-input[type=checkbox]:focus {
    box-shadow: 0 0 0 .25rem var(--color-primary-light) !important;
    border-color: var(--color-primary) !important;
}
.wm-booking .btn-success.disabled,
.wm-booking .btn-success:disabled {
    color: #fff;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.wm-booking .form-check-input:checked {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.wm-booking .form-check-input {
    width: 1.3em !important;
    height: 1.3em !important;
}

.wm-booking .form-check .form-check-input {
    float: none !important;
}

.wm-booking .form-switch .form-check-input {
    width: 2.5em !important;
}

.wm-booking .form-check-input:focus {
    border-color: var(--color-primary-light) !important;
    outline: 0;
}

.wm-booking .form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e") !important;
}

.wm-booking .form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}

.wm-booking .border {
    border: 1px solid var(--color-primary) !important;
}

.wm-booking .border-2 {
    border: 1.6px solid var(--color-primary) !important;
}

.wm-booking .btn-outline-success:hover {
    color: white !important;
    background-color: var(--color-primary) !important;
}

.wm-booking .btn-success:hover {
    background-color: white !important;
    color: var(--color-primary) !important;
}

.wm-booking .form-control {
    border-radius: 0.6rem !important;
}

.wm-booking .form-control:focus {
    box-shadow: 0 0 0 .25rem var(--color-primary-light) !important;
    border: 1px solid #97c297 !important;
}

.wm-booking .navbar {
    background-color: var(--color-primary) !important;
    color: white !important;
}

.wm-booking .navbar-nav > .nav-item > .nav-link {
    color: white !important;
}
.wm-booking .nav-link:focus,
.wm-booking .nav-link:hover {
    color: var(--color-primary) !important;
}

.wm-booking .dropdown-menu .dropdown-item {
    color: black !important;
}

.wm-booking .dropdown-menu .dropdown-item:active {
    color: white !important;
    background-color: var(--color-primary) !important;
}

.wm-booking .tooltip-inner {
    background-color: var(--color-primary) !important;
    color: var(--color-primary-light) !important;
    text-align: left;
    font-size: 0.9rem;
    max-width: 550px;
    border-radius: 0.5rem;
    padding: 20px;
}

.wm-booking .tooltip.show {
    opacity: 1 !important;
}

.wm-booking .tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--color-primary) !important;
}

.wm-booking .dropdown-item:hover {
    background-color: #c6d9c6 !important;
}

.wm-booking .badge {
    width: fit-content !important;
    height: fit-content !important;
}

.wm-booking .page-item.active .page-link {
    color: #fff !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.wm-booking .page-link {
    color: var(--color-primary) !important;
}

.wm-booking .accordion-button::after {
    display: none;
}

.wm-booking .accordion-button::before {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .5rem;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.wm-booking .accordion-button:not(.collapsed)::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23346132'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.wm-booking .accordion-button:not(.collapsed) {
    color: var(--wm-primary);
    background-color: var(--color-primary-light);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.wm-booking .accordion-button:focus {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}


html {
    font-size: 0.9rem;
}
body {
    font-family: "Roboto", sans-serif ;
    background-color: var(--color-primary-light) ;
}
.bg-light-gray {
    background-color: #f8f9fa ;
}
.primary-text-color {
    color: var(--color-primary) ;
}
.text-dark-light {
    color: var(--text-dark-light);
}
.primary-light-text-color {
    color: var(--color-primary-light) ;
}
.bg-primary-light {
    background-color: var(--color-primary-light);
}
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-ca-primary {
    background-color: var(--color-ca-primary);
}
.bg-primary-lighter {
    background-color: var(--border-primary-color-lighter);
}
.wm-booking .btn-success,
.wm-booking.btn-success {
    color: white ;
    background-color: var(--color-primary);
}
.btn-success-lighter {
    color: var(--color-primary) ;
    background-color: var(--color-primary-light);
}
.bg-warning {
    background-color: var(--color-warning) !important;
}
.bg-success {
    background-color: var(--color-success) !important;
    color: var(--color-primary)
;}

.bg-primary-gray {
    background-color: var(--color-primary-gray) ;
}
.bg-info {
    background-color: #0A5766 !important;
}
.text-success {
/*    color: #20833E !important;*/
    color: #20793B !important;
}
.text-warning {
    color: #e1a207 !important;
}
.border-success {
    border: 1px solid var(--color-primary) !important;
}
.selected-card-border {
    border: 3px solid var(--border-primary-color-lighter) ;
}
.wm-booking .btn-outline-success,
.wm-booking.btn-outline-success {
    color: var(--color-primary) ;
    border-color: var(--color-primary) ;
    background-color: white ;
}
.btn-outline-success:hover .description {
        color: white !important;
    }
.wm-booking .btn-success:focus,
.wm-booking .btn-outline-success:focus,
.wm-booking .form-check-input[type=checkbox]:focus {
    box-shadow: 0 0 0 .25rem var(--color-primary-light) ;
    border-color: var(--color-primary) ;
}
.wm-booking .btn-success.disabled,
.wm-booking .btn-success:disabled {
    color: #fff;
    background-color: var(--color-primary) ;
    border-color: var(--color-primary) ;
}
.form-select option:hover {
    background-color: var(--color-primary) ;
    color: var(--color-primary-light) ;
}
.container {
    max-width: 1450px;
}
.wm-booking .nav-link:focus,
.wm-booking .nav-link:hover {
    color: var(--color-primary) ;
}
.btn-check:focus + .btn, .btn:focus{
    box-shadow: none ;
}
.rounded-pill-top {
    border-top-left-radius: 1rem ;
    border-top-right-radius: 1rem ;
    border-bottom-left-radius: 0 ;
    border-bottom-right-radius: 0 ;
}
.text-opacity-75 {
    --cui-text-opacity: 0.75;
}
.line {
    width: 50px; /* or any value that suits your spacing */
    height: 1.6px;
    background-color: #ccc;
    align-self: center; /* vertically center the line */
}
.stepper-text {
    color: #ccc;
}
.stepper {
    min-height: 100px;
    color: #ccc;
}
.stepper .active{
    color:var(--color-primary) ;
}
.step-border {
    border: solid 2px var(--color-primary);

}
.custom-gap{
    gap: 15rem;
}
#map{
    height: 180px
;}
.bar-bg-color {
    background-color: #bfe5bf54 ;
    color: var(--color-primary) ;
}
.dot {
    width: 10px;
    height: 10px;
    

}
.hotel-card-badge.badge {
    background-color: var(--color-primary-light) ;
    color: var(--color-primary) ;
    margin-bottom: 16px;
    margin-left: 16px;
}

.hotel-marker-wrapper {
    background: transparent;
    border: none;
}

.hotel-marker-modern {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Pin */
.hotel-marker-pin {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 180deg, #8b89f0 0%, #5856d6 100% );
    border: 3px solid #d9d8ff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.35), 0 2px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

    /* Rotate icon back */
    .hotel-marker-pin i {
        color: white;
        font-size: 16px;
        transform: rotate(45deg);
    }

/* Label */
.hotel-marker-label {
    margin-left: -33px;
    background: white;
    border: 2px solid #d9d8ff;
    border-radius: 999px;
    padding: 10px 10px 10px 37px;
    font-size: 10px;
    font-weight: 600;
    color: #212529;
    box-shadow: 0 3px 29px rgba(0, 0, 0, 0.12);
    height: 34px;
    display: flex;
    align-items: center;
}
.carousel-indicators .active {
    opacity: 1 ;
    background-color: var(--color-primary) ;
}
.price-holder{
    padding-top: 36px;
    padding-right: 15px;
}
.custom-text-muted {
    --bs-text-opacity: 1;
    color: #6c757d ;
}
.custom-text-muted:hover {
        color: var(--color-primary) ;
    }
.muted {
    color: #4F4F4F ;
    background-color: #f8f9fa ;
}
.chat-toggle {
    position: fixed;
    bottom: 40px;
    right: 45px;
    display: flex;
    align-items: center;
    justify-items: left ;
    background-color: white;
    color: var(--color-primary);
    border-radius: 20px;
/*    padding: 10px 67px 10px 13px;*/
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    overflow: hidden;
    min-height: 44px;
    max-width: 200px;
    transition: max-width 0.6s ease-in-out;
    opacity: 1;
}
.chat-toggle-container {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: flex;
    z-index: 1030 ;
}
.chat-dots {
    background-color: var(--color-primary) ;
    bottom: -9px;
    right: -4px;
    padding: 11px 19px;
}
.notification-dot {
    position: absolute;
    top: 3px;
    left: 80%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: red;

}

.notification-item {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .notification-item:hover {
        background-color: #f8f9fa;
    }
.notification-list {
    max-height: 400px;
    overflow-y: auto;
}
.notification-dropdown {
    width: 403px;
    border-radius: 6px;
    top: 80% !important;
}
.unread-dot {
    width: 8px;
    height: 7px;
}
.chat-card {
    position: fixed;
    bottom: -36px;
    right: -645px;
    z-index: 1039;
    display: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}
.chat-card.show {
        display: block ;
        transform: translateY(0);
        pointer-events: auto;

    }
#chat2 .form-control {
    border-color: transparent;
}
#chat2 .form-control:focus {
        border-color: transparent;
        box-shadow: inset 0px 0px 0px 1px transparent;
    }
.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}
.form-control.box-shadow-0{
    box-shadow: none ;
}
.clickable-card:hover {
    border: 1px solid white ;
}
.clickable-reports{
    padding: 13px;
}
.clickable-reports:hover {
        color: white !important;
        background-color: var(--color-primary) ;
    }
.p-login {
    padding: 62px 115px 0px 115px ;
}
.chevron {
    transition: transform 0.3s ease;
}
.chevron.rotate {
        transform: rotate(90deg);
    }
.toggle-menu-item:hover, 
.toggle-menu-item:active{
    background-color: var(--color-primary) ;
    color: white ;
}
.toggle-menu-item:focus {
    background-color: var(--color-primary) ;
    color: white ;
}
.map-container {
    min-height: 170px;
    height: 266px;
    min-width: 25%;
    border-color: var(--border-primary-color-lighter);
}
.dc2-show {
    display: flex !important;
}
.dc2-hide {
    display: none !important;
}
.filter-select,
.search-box{
    border: 1px solid #ddd;
    background-color: #f8f9fa; /* light gray like your screenshot */
    padding-left: 2rem; /* space for the funnel */
    appearance: none; /* remove default arrow (for Chrome/Edge) */
    -webkit-appearance: none;
    -moz-appearance: none;
}
.custom-icon-input {
    position: relative;
    display: inline-block;
}
.custom-icon-input .bi-funnel,
    .custom-icon-input .bi-activity,
    .custom-icon-input .bi-calendar,
    .custom-icon-input .bi-search {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
        color: #afafaf;
        pointer-events: none;
    }
.table-header-custom {
    background-color: #f8f9fa;
}
.table-header-custom th:first-child {
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
.table-header-custom th:last-child {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
.table-header-column {
    padding-top: 13px ;
    padding-bottom: 13px ;
}
.table tbody tr:last-child td {
    border-bottom: 0 ;
}

.wm-report-page {
    --wm-report-border: color-mix(in srgb, var(--wm-border-light) 72%, var(--bs-white));
    --wm-report-muted: var(--wm-muted);
    --wm-report-surface: var(--bs-white);
    --wm-report-soft: color-mix(in srgb, var(--wm-primary-light) 72%, var(--bs-white));
    --wm-report-shadow: 0 .75rem 1.75rem rgba(var(--wm-primary-rgb), .08);
    --wm-report-strong-shadow: 0 1.15rem 2.4rem rgba(var(--wm-primary-rgb), .1);
    --wm-report-card-accent: var(--wm-primary);
    --wm-report-card-tint: var(--wm-primary-light);
    padding-bottom: 2rem;
}
.wm-report-back {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: fit-content;
    padding: .45rem .8rem;
    border: 1px solid var(--wm-report-border);
    border-radius: 999px;
    background: var(--wm-report-surface);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: .82rem;
    transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}
.wm-report-back:hover,
.wm-report-back:focus {
    background: var(--wm-report-soft);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}
.wm-report-header,
.wm-report-filter,
.wm-report-section,
.wm-report-empty {
    border: 1px solid var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-surface);
    box-shadow: var(--wm-report-shadow);
}
.wm-report-header {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 1.35rem;
    box-shadow: var(--wm-report-strong-shadow);
}
.wm-report-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.wm-report-heading-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.wm-report-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 3.35rem;
    height: 3.35rem;
    border: 1px solid var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-soft);
    color: var(--wm-primary);
    font-size: 1.45rem;
}
.wm-report-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 700;
}
.wm-report-title {
    margin: .4rem 0 .25rem;
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--bs-body-color);
}
.wm-report-subtitle {
    margin: 0;
    max-width: 58rem;
    color: var(--wm-report-muted);
}
.wm-report-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
}
.wm-report-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 2.45rem;
    padding: .45rem .75rem;
    border: 1px solid var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-surface);
    color: var(--bs-body-color);
    text-decoration: none;
    font-weight: 700;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.wm-report-nav-link:hover,
.wm-report-nav-link:focus {
    border-color: var(--wm-primary);
    color: var(--wm-primary);
    transform: translateY(-1px);
}
.wm-report-nav-link.is-active {
    border-color: var(--wm-primary);
    background: var(--wm-primary);
    color: var(--bs-white);
    box-shadow: var(--wm-shadow-sm);
}
.wm-report-filter {
    padding: 1rem;
}
.wm-report-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
    color: var(--wm-report-muted);
    font-size: .78rem;
    font-weight: 700;
}
.wm-report-filter-heading span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.wm-report-filter label {
    color: var(--wm-report-muted);
    font-weight: 700;
}
.wm-report-filter .form-control,
.wm-report-filter .form-select {
    min-height: 2.35rem;
    border-color: var(--wm-report-border);
}
.wm-report-filter .form-control:focus,
.wm-report-filter .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 .18rem rgba(32, 121, 59, .12);
}
.wm-report-metric {
    position: relative;
    min-height: 7rem;
    padding: 1rem;
    overflow: hidden;
    border: 1px solid var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-surface);
    box-shadow: var(--wm-shadow-sm);
}
.wm-report-metric::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: .25rem;
    background: var(--wm-report-card-accent);
}
.wm-report-metric-primary {
    --wm-report-card-accent: var(--wm-primary);
    --wm-report-card-tint: var(--wm-primary-light);
}
.wm-report-metric-success {
    --wm-report-card-accent: var(--wm-green);
    --wm-report-card-tint: var(--wm-success-bg);
}
.wm-report-metric-info {
    --wm-report-card-accent: var(--wm-info-text);
    --wm-report-card-tint: var(--wm-info-bg);
}
.wm-report-metric-warning {
    --wm-report-card-accent: var(--wm-warning-text);
    --wm-report-card-tint: var(--wm-warning-bg);
}
.wm-report-metric-accent {
    --wm-report-card-accent: var(--wm-ca-primary);
    --wm-report-card-tint: color-mix(in srgb, var(--wm-ca-primary) 12%, var(--bs-white));
}
.wm-report-metric-label {
    display: block;
    margin-bottom: .35rem;
    color: var(--wm-report-muted);
    font-size: .78rem;
    font-weight: 700;
}
.wm-report-metric-value {
    display: block;
    color: var(--bs-body-color);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
}
.wm-report-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    margin-bottom: .8rem;
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-card-tint);
    color: var(--wm-report-card-accent);
}
.wm-report-section {
    padding: 1.15rem;
}
.wm-report-section-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
}
.wm-report-section-title i {
    color: var(--color-primary);
}
.wm-report-table {
    margin-bottom: 0;
}
.wm-report-table thead th {
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--wm-report-border);
    color: var(--wm-report-muted);
    font-size: .76rem;
    font-weight: 700;
    background: var(--wm-report-soft);
    white-space: nowrap;
}
.wm-report-table tbody td,
.wm-report-table tbody th {
    padding-top: .72rem;
    padding-bottom: .72rem;
    border-color: var(--wm-report-border);
    vertical-align: middle;
}
.wm-report-table tbody tr:hover td,
.wm-report-table tbody tr:hover th {
    background: var(--wm-report-soft);
}
.wm-report-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    margin-right: .5rem;
    border-radius: 999px;
    background: var(--wm-report-soft);
    color: var(--wm-primary);
    font-size: .72rem;
    font-weight: 700;
}
.wm-report-breakdown-label {
    display: block;
    margin-bottom: .35rem;
    font-weight: 700;
}
.wm-report-meter {
    display: block;
    width: min(12rem, 100%);
    height: .42rem;
}
.wm-report-meter::-webkit-meter-bar {
    border: 0;
    border-radius: 999px;
    background: var(--wm-report-soft);
}
.wm-report-meter::-webkit-meter-optimum-value {
    border-radius: 999px;
    background: var(--wm-primary);
}
.wm-report-meter::-moz-meter-bar {
    border-radius: 999px;
    background: var(--wm-primary);
}
.wm-report-inline-empty {
    padding: 1rem;
    border: 1px dashed var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    color: var(--wm-report-muted);
    text-align: center;
}
.wm-report-empty {
    padding: 2.4rem 1.5rem;
    text-align: center;
}
.wm-report-empty-feature {
    padding-block: 3.2rem;
}
.wm-report-empty-feature p {
    max-width: 52rem;
    margin-inline: auto;
}
.wm-report-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-soft);
    color: var(--color-primary);
}
.wm-report-status {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    max-width: 100%;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid var(--wm-report-border);
    background: var(--wm-report-soft);
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.wm-report-alert {
    border: 1px solid var(--wm-report-border);
    border-radius: .5rem;
}
.wm-report-truncate {
    max-width: 24rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wm-report-source-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.wm-report-source-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1rem;
    border: 1px solid var(--wm-report-border);
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-surface);
}
.wm-report-source-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: .85rem;
    border-radius: var(--wm-radius-md);
    background: var(--wm-report-soft);
    color: var(--wm-primary);
}
.wm-report-source-title {
    margin: 0 0 .75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
}
.wm-report-source-copy {
    margin: 0 0 1rem;
    color: var(--wm-report-muted);
}
.wm-report-source-decision {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--wm-report-border);
    font-weight: 700;
}
@media (max-width: 767.98px) {
    .wm-report-header,
    .wm-report-filter,
    .wm-report-section {
        padding: 1rem;
    }
    .wm-report-topline,
    .wm-report-heading-row {
        align-items: flex-start;
    }
    .wm-report-topline {
        flex-direction: column;
    }
    .wm-report-heading-row {
        gap: .8rem;
    }
    .wm-report-heading-icon {
        width: 2.65rem;
        height: 2.65rem;
        font-size: 1.15rem;
    }
    .wm-report-title {
        font-size: 1.35rem;
    }
    .wm-report-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .wm-report-filter-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: .35rem;
    }
    .wm-report-table {
        min-width: 42rem;
    }
    .wm-report-truncate {
        max-width: 13rem;
    }
    .wm-report-source-grid {
        grid-template-columns: 1fr;
    }
}
.date-range-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}
.paging .active {
    background-color: #d2e0d5 ;
    color: black ;
    border-radius: 0.7rem ;
}
.paging {
    --bs-text-opacity: 1;
    color: #6c757d ;
}
.custom-nav {
    background-color: #f8f9fa; /* light gray background */
    padding: 0.5rem 1rem;
}
.custom-nav .nav-link {
        color: var(--color-primary);
/*        font-size: 13px;*/
        margin-right: 1rem;
        border-radius: 0.5rem;
        padding: 0.5rem 1rem;
    }
.custom-nav .nav-link.active {
            background-color: #e9ecef;
            color: var(--color-primary) ;
            font-weight: 600;
        }
.custom-nav .nav-link:hover {
            background-color: #f1f3f5;
            color: var(--color-primary) ;
        }
.custom-nav-2 {
 
    border-radius: 11px;
    padding: 0.5rem 1rem;
}
.custom-nav-2 .nav-link {
/*        color: black !important;*/
        margin-right: 1rem;
        border-radius: 0.5rem;
        padding: 0.5rem 1rem;
    }
.custom-nav-2 .nav-link.active {
/*            background-color: #e9ecef;*/
            color: var(--color-primary) ;
            font-weight: bold;
          
        }
.custom-nav-2 .nav-link:hover {
            background-color: #f1f3f5;
/*            color: var(--color-primary) !important;*/
        }
.custom-card-padding {
    padding-top: 2rem ;
    padding-bottom: 2rem ;
    padding-right: 3rem ;
    padding-left: 3rem ;
}
.card-header:first-child {
    border-radius: calc(.7rem - 1px) calc(.7rem - 1px) 0 0 ;
}
/* Custom style for the dashed border and hover effect */
#drop-zone {
    border: 2px dashed #e5e7eb;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
#drop-zone:hover {
        border-color: #3b82f6;
        background-color: #eff6ff;
    }
.border-dashed {
    border-style: dashed ;
}
.chat-container {
    height: calc(90vh - 60px); /* Adjust height for the nav tabs */
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}
.chat-main {
    background-color: #f9fafb;
    position: relative;
    height: 100%;
}
.chat-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.message-area {
    overflow-y: auto;
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 52vh;
    max-height: 52vh;
}
.message-area-2 {
    overflow-y: auto;
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 35vh;
    max-height: 35vh;
}
.message-bubble-wrapper {
    display: flex;
    flex-direction: column;
}
.message-bubble {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    word-wrap: break-word;
}
.message-details {
    font-size: 0.75rem;
    color: #666E75;
}
.message-incoming .message-bubble {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    align-self: flex-start;
}
.message-incoming .message-details {
    align-self: flex-start;
}
.message-outgoing .message-bubble {
    background-color: #d1e7dd; /* Bootstrap's success color variant */
    align-self: flex-end;
}
.message-outgoing .message-details {
    align-self: flex-end;
}
.chat-input-area {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}
.history-list {
    overflow-y: auto;
    flex-grow: 1;
}
.history-item {
    border-bottom: 1px solid #e9ecef;
}
.status-badge {
    font-size: 0.8rem;
    padding: 0.3em 0.6em;
    border-radius: 1rem;
}
.status-badge.open,
    .status-badge.confirmed {
        background-color: #e2f4ed;
        color: #0D380A;
    }
.status-badge.closed {
        background-color: #f0f0f0;
        color: #4A4F54;
    }
.status-badge.pending,
    .status-badge.warning {
        background-color: #fff3cd;
        color: #92400e;
    }
.status-badge.cancelled,
    .status-badge.danger {
        background-color: #fcebeb;
        color: #902C36;
    }
.history-item:hover {
    background-color: var(--color-primary-light);
    border-radius: 0.2rem ;
}
/* Custom Grid for Images */
.image-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 400px; /* Fixed height for visual consistency */
}
.img-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ccc;
    position: relative;
}
.img-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
.img-item img:hover {
            transform: scale(1.05);
        }
/* Large Image (takes 2x2 grid area) */
.img-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
/* Side Images */
.img-side-top {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}
.img-side-bottom-left {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
.img-side-bottom-right {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}
/* Photo Counter Overlay */
.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
}
/* Responsive adjustments for the grid */
.progress {
    height: 0.5rem ;
    border-radius: 0.25rem ;
}
.progress-bar {
    background-color: var(--color-primary) ;
}
.clickable-title {
    font-size: 0.6em ;
}
/* Main image area */
.main-image img {
    height: 500px; /* fixed height */
    width: 100%; /* always fill modal width */
    object-fit: cover; /* crop to fit */
}
.thumbnail-item {
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease-in-out;
}
.thumbnail-item.active {
        border: solid 4px white ;
    }
.thumbnail-item img {
        height: 100px;
        width: 150px;
        object-fit: cover;
        border-radius: 4px;
    }
.img-thumbnail {
    background-color: #363636 ;
    border: none ;
}
.most-popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5rem 1rem;
    border-top-right-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
    background-color: #20793b; /* Success/green color */
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    transform: translateY(-100%) translateY(0.75rem) translateX(2px); /* Position it neatly at the top right */
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
/* Style for the selectable card area */
.card-service {
    cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    position: relative;
}
/* Shadow on hover for better interaction feedback */
.card-service:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) ;
    }
/* Style when the associated radio input is checked */
.card-check:checked + .card-service {
    border: 2px solid #198754; /* Bootstrap success color */
    box-shadow: 0 0 6px rgba(25, 135, 84, 0.4);
    transition: 0.2s ease;
}
/* Hide the default radio input */
.card-check {
    display: none;
}
/* The standalone selection indicator */
.selection-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.75rem;
    border-radius: 50%;
    border: 2px solid #ccc;
    color: transparent;
    font-size: 1rem;
    font-weight: bold;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}
/* Style the indicator when the card is checked */
.card-check:checked + .card-service .selection-indicator {
    border-color: #20793b; /* Green border when checked */
    background-color: #20793b; /* Green background */
    color: white; /* White checkmark */
    content: "✓"; /* Checkmark symbol */
}
/* Make selected color persistent */
.selected-row {
    background-color: var(--color-primary-light) ; /* greenish highlight */
    box-shadow: inset -3px 0 0 #198754; /* subtle accent line */
}
/* Hover shouldn't override selection */
.guest-list:hover {
    background-color: var(--color-primary-light) ;

}
.modal-content-wrapper {
    transition: transform 300ms ease-in-out;
    width: 200%;
    display: flex;
}
.modal-content-wrapper.width3 {
    transition: transform 300ms ease-in-out;
    width: 100%;
    display: flex;
}
.slide {
    flex: 0 0 100%; /* each slide takes 100% of viewport */
    max-width: 100%;
}
/*
.table-hover tbody tr.selected-row:hover td {
    background-color: #d9f3df !important;
}*/
.urgent-badge {
    animation: pulse 1.5s infinite;
}
.no-rates-ui {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.47rem;
    text-align: center;
    border: 1px dashed #dee2e6;
}
.price-text {

    line-height: 1.2;
}
.unit-text {
    font-size: 0.65em; /* relative to price */
    line-height: 1;
    opacity: 0.8; /* optional: softer look */
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    }
    /* Bootstrap danger color glow */
    70% {
        box-shadow: 0 0 0 8px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}
.hotel-card {
    overflow: hidden; /* ensures image stays flush with border */
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
}
.hotel-card.selected {
        border: 2px solid #198754; /* Bootstrap success color */
        box-shadow: 0 0 6px rgba(25, 135, 84, 0.4);
        transition: 0.2s ease;
        overflow: hidden; /* ensures image stays flush with border */
        border-radius: 0.75rem;
    }
.hotel-card.selected img {
            border-radius: 0;
        }
/* Change label button style when checked */
.btn-check:checked + .btn {
    color: white;
    background-color: #198754;
    border-color: #198754;
}
.paginator-box {
    border: 1px solid var(--color-primary);
    background-color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.page-link:hover {
        color: var(--color-primary) ;
    }
.room-type.selected {
    border: 2px solid #198754; /* Bootstrap success color */
    box-shadow: 0 0 6px rgba(25, 135, 84, 0.4);
    /*transition: 0.2s ease;*/
    padding: .43rem ;
}
.room-type.disabled {
    opacity: 0.4;
    pointer-events: none;
}
/* Smooth show/hide for the Book Now button */
.proceed-btn {
    display: none !important;
    transition: opacity 0.2s ease;
}
.proceed-btn.visible {
        display: block !important;
        opacity: 1;
    }
.location-card.selected {
    border: 2px solid #198754; /* Bootstrap success color */
    box-shadow: 0 0 6px rgba(25, 135, 84, 0.4);
    transition: 0.2s ease;
}
/* Hide the default chevron on the right */
/* Add the chevron before the text */
/* Rotate when expanded */
/* 2. Collapsible Group Styling - SCOPED WITH .services-layout */
.services-layout .accordion-item {
            border: none;
            background-color: transparent;

        }
/* Style the header to look like a title with a line below it, and make it the trigger */
.services-layout .accordion-header {
            border-bottom: 1px solid var(--bs-success); /* The line below the text */
            margin-bottom: 0.9rem;
        }
.services-layout .accordion-button {
            /* Modified to use flex for icon placement */
            padding: 0;
            background-color: transparent ;
            box-shadow: none ;
            font-weight: 700;
            color: var(--bs-dark);
            cursor: pointer;
            width: 100%;
            text-align: left;
            border: none ;
            
            /* Enable flex to push icon to the right */
            display: flex;
            align-items: center;
        }
/* Hide Bootstrap's default icon and transition the custom one */
.services-layout .accordion-button::after {
            display: none; 
        }
/* Custom Icon Styling and Transition */
.services-layout .accordion-button .collapse-icon {
            transition: transform 0.2s ease-in-out;
            font-size: 1rem; 
            color: var(--bs-dark);
        }
.services-layout .accordion-button:not(.collapsed) {
             color: var(--color-primary); /* Change text color when open */
        }
/* Rotate icon 180deg when expanded */
.services-layout .accordion-button:not(.collapsed) .collapse-icon {
            transform: rotate(180deg);
            color: var(--bs-success);
        }
/* 3. List Item Styling (reused) */
.service-item {
            border-radius: 0.5rem;
            border: 1px solid var(--bs-border-color);
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: white;
        }
.form-control:disabled, .form-control[readonly] {
            background-color: #e9ecef69 ;
        }
.icon-single {
    background-color: #fef3c7;
    color: #92400e;
}
.icon-double {
    background-color: #dbeafe;
    color: #1e40af;
}
.occupancy-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-right: 1rem;
}
.selection-card {
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    border: 2px solid #f1f5f9;
}
.selection-card:hover {
        border-color: var(--color-primary);
        background-color: #f3fff5;
    }
.selection-card.active {
        border-color: var(--color-primary);
        background-color: #f3fff5;
    }
.empty-state {
    padding: 2rem;
    border: 2px dashed #e2e8f0;
    border-radius: 1.5rem;
    text-align: center;
    background: white;
}
.prev-btn-disabled {
    pointer-events: none; /* prevents clicking */
    opacity: 0.6; /* faded look */
    cursor: not-allowed;
}
.hotel-title {
    line-height: 1.25rem;
    min-height: 5.5rem; /* reserve space for 2 lines */
}
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hotel-hero {
    height: 250px; /* adjust to match your design */
    background: #000;
}
.hotel-hero-overlay {
    height: 85%;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}
/* keep text readable */
.hotel-hero-title {
    font-size: 1rem; /* like the sample */
    line-height: 1.3;
}
/* The actual Dropdown Card */
.occupancy-card {
    width: 360px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
    margin-top: 8px;
    padding: 24px;
}
.counter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.counter-label {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}
.counter-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
}
.counter-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
    transition: background 0.2s;
}
.counter-btn:hover:not(:disabled) {
        background-color: #f0f7ff;
    }
.counter-btn:disabled {
        color: #ccc;
        cursor: not-allowed;
    }
.counter-value {
    width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    line-height: 40px;
}
.btn-done {
    border: 1px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    width: 100%;
    padding: 8px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-done:hover {
        background-color: #f0f7ff;
    }
/* ==========================================================================
   Utility classes — replace inline styles
   ========================================================================== */
.wm-logo { height: 45px; }
.wm-profile-link { line-height: 1.2; font-size: 0.85em; }
.wm-footer-spacer { min-height: 300px; }
/* Semantic badge utilities (Booking-local mirrors of shared tokens) */
.badge-warning { background-color: #fef3c7; color: #b45309; }
.badge-info    { background-color: #dbeafe; color: #1d4ed8; }
.badge-danger  { background-color: #fcebeb; color: #902C36; }
/* Modal & form utilities */
.wm-modal-height { height: 552px; }
.wm-fixed-height-26 { max-height: 26rem; min-height: 26rem; }
.wm-fixed-height-31 { max-height: 31rem; min-height: 31rem; }
/* Chat utilities */
.wm-chat-body    { position: relative; min-height: 600px; max-height: 600px; overflow-y: auto; }
.wm-avatar-sm    { width: 45px; height: 100%; }
.wm-avatar-xs    { width: 40px; height: 100%; }
/* Colour utilities */
.bg-info-light   { background-color: #eef2ff; }
.bg-warning-light{ background-color: #fffbeb; border-color: #fde68a; }
.bg-danger-light { background-color: #fef2f2; border-color: #fee2e2; }
.text-warning-dark { color: #92400e; }
.text-warning-darker { color: #b45309; }
.text-danger-dark { color: #7f1d1d; }
.text-muted-custom-2 { color: #4E4F50; }
.wm-height-180 { height: 180px; }
.wm-height-211 { height: 211px; }
.wm-height-298 { height: 298px; }
.wm-thumb { width: 120px; cursor: pointer; }
.wm-z-1050 { z-index: 1050 ; }
.cursor-pointer { cursor: pointer; }
/* Login page utilities */
.wm-login-hero { height: 400px; position: relative; overflow: hidden; }
.wm-login-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/images/worldmeetings_logo.svg") repeat;
    background-size: 150px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}
.wm-login-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: var(--wm-login-bg, image-set(
        url('/assets/images/test2.webp') type('image/webp'),
        url('/assets/images/test2.jpg') type('image/jpeg')
    ));
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}
.wm-login-card { margin-top: -200px; backdrop-filter: blur(30px); }
.wm-validation-span { min-height: 22px; }
.wm-login-actions { min-height: 58px ; }
/* Overview tab utilities */
.wm-nav-padded { padding: 0.5rem 1rem; }
/* Empty state utilities */
.wm-empty-state-md { min-height: 22rem; }
/* Loading overlay */
.global-loading {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}
/* Font-size utilities (Booking-specific, mirrors shared site.css) */
/* ==========================================================================
   Responsive overrides
   TODO: Migrate .col-lg-4 and .w-75 overrides to Bootstrap grid utilities
   ========================================================================== */

@media (min-width: 2701px) {

    .col-lg-4 {
        width: 26.3333% !important;
    }
}

@media (max-width: 2700px) {

    .col-lg-4 {
        width: 26.3333% !important;
    }
}

@media (max-width: 2560px) {
    .w-75 {
        width: 65% !important;
    }

    .col-lg-4 {
        width: 28.3333% !important;
    }
}

@media (max-width: 2450px) {
    .col-lg-4 {
        width: 30.3333% !important;
    }
}

@media (max-width: 2101px) {
    .w-75 {
        width: 75% !important;
    }

    .col-lg-4 {
        width: 35.3333% !important;
    }
}

@media (max-width: 1670px) {
    .col-lg-4 {
        width: 45.3333% !important;
    }

    .w-75 {
        width: 77% !important;
    }
}

@media (max-width: 1500px) {

    .w-75 {
        width: 85% !important;
    }
}

@media (max-width: 1400px) {

    .chat-card {
        right: -555px;
    }
}

/*hide navbar and show hambuger navbar*/
@media(max-width: 1204px) {
    .chat-card {
        right: -555px;
    }.navbar-nav {
        gap: 2rem ;
    }.chat-card {
        right: -309px;
    }
    .navbar-nav,
    .profile {
        display: none !important;
    }

    .menu {
        justify-content: normal !important;
        gap: 2.5em;
    }

    .profile {
        margin-left: auto !important;
    }

    .toggle-menu {
        display: block !important;
    }
     .dc1 {
        width: 100% ;
    }.dc2 {
        width: 100% ;
/*        flex-direction: row-reverse !important;*/
    }.dc2-show {
        display: none !important;
    }.dc2-hide {
      
        display: flex !important;
    }.dc2-hide-wrapper{
        width: 40% ;
    }.ebirds-card {
        flex: 1 1 auto ;
        height: 9% ;
    }.kam-card {
        flex: 1 1 auto ;
        max-height: 100% ;

    }.mi-card {
        flex: 1 1 auto ;
    }.chat-toggle {
        max-width: 0;
    }.lang-switcher {
        display: block ;
    }.lang-switcher-dropdown {
        right: 0 ;
        left: auto ;
    }.hotel-info {
        width: 100% ;
    }.image-content {
        width: 100% ;
        margin-bottom: 1.5rem ;
    }.price-holder {
        top: auto ;
        padding-top: 0px ;
    }/*    .steps {
    display: none !important;
}
.loc-selector-input {
    margin-top: 54px;
}*/.custom-gap {
        gap: 0rem;
    }.res-type{
        width: 50% ;
    }.activity-card{
        width: 50% ;
    }.date-input {
        width: 43% ;
    }.noofpeople {
        width: 43% ;
    }.roomtype {
        width: 43% ;
    }.location {
        width: 43% ;
    }.chat-card {
        right: -113px;
    }.loc-selector-input {
        flex-direction: column ;
    }.map-container {
        height: 263px ;
    }.chat-card {
        right: -113px;
        }}
@media(max-width: 768px) {.search-input {
         width: 50% ;
     }.summary-res,
     .summary-time,
     .summary-contact,
     .summary-detail{
         width: 50% ;

     }.summary-res{
        margin-bottom: 1rem ;
    }.dc2 {
        width: 100% ;
        flex-direction: column ;
        padding-bottom: 2em ;
    }.chat-card {
        right: 4px;
    }.dc1-items {
        flex-direction: column ;
    }.dc1-item-2 {
        margin-top: 20px;
    }.date-input {
        width: 48% ;
    }.noofpeople {
        width: 48% ;
    }.roomtype {
        width: 48% ;
    }.location {
        width: 48% ;
    }.dc2-show {
        display: flex !important;
    }.dc2-hide {
        display: none !important;
    }.step {
        width: 50% ;
    }.activity-card {
        width: 100% ;
    }.detail-input {
         padding-right: 0px ;
         width: 100% ;
    }.res-type {
        width: 100% ;
    }.p-login {
        padding: 62px 39px 0px 39px ;}.summary-res,
    .summary-time,
    .summary-contact,
    .summary-detail {
        width: 100% ;
    }.date-input {
        width: 100% ;
    }.noofpeople {
        width: 100% ;
    }.roomtype {
        width: 100% ;
    }.location {
        width: 100% ;
    }.search-input {
        width: 100% ;
    }}

.ebird-message-list {
    max-height: 420px;
}

.wm-map-popup-img {
    width: 135px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.wm-map-popup-title {
    font-size: 16px;
    line-height: 1.2;
}

.leaflet-popup.hotel-square-popup {
    bottom: 17px !important;
    left: -150px !important;
}

.hotel-square-popup .leaflet-popup-tip-container,
.hotel-square-popup .leaflet-popup-tip {
    display: none !important;
}

.hotel-square-popup .leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hotel-square-popup .leaflet-popup-content {
    margin: 0 !important;
    width: 400px !important;
}

.hotel-square-popup .wm-map-popup {
    width: 400px;
    padding: 12px;
}

.map-view-offcanvas {
    --bs-offcanvas-height: 92vh;
}

.map-view-offcanvas .offcanvas-body {
    height: calc(92vh - 72px);
}

.map-filter-panel {
    width: 280px;
    flex: 0 0 280px;
}

.map-hotel-list-panel {
    width: 380px;
    flex: 0 0 380px;
}

.map-panel {
    height: 100%;
}

.map-panel #mapModal {
    height: 100%;
}