/* ==========================================================================
   BookAero Header Design System (custom-v2.css)
   ========================================================================== */

.header-nav .navbar .navbar-nav .my-account #myAccount {
    transition: 0.3s ease-in-out;
    width: 35px !important;
    height: 35px !important;
    left: -43px !important;
    top: -8px !important;
}

/* ==========================================================================
   BookAero Modern Modal Design System (custom-v2.css)
   ========================================================================== */

.modal-open .modal-modern {
    overflow: hidden !important;
}
/* Modern Modal Content & Structure */
.modal-modern .modal-content {
    border-radius: 24px !important;
    border: none !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.modal-modern .modal-body {
    padding: 0 !important;
}

/* Modal Sidebar (Image Branding) */
.modal-modern .modal-sidebar {
    position: relative;
    overflow: hidden;
}

.modal-modern .modal-sidebar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

/* Modal Form Container */
.modal-modern .modal-form-container {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    min-height: 400px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
}

/* Custom modern scrollbar for the modal form container */
.modal-modern .modal-form-container::-webkit-scrollbar {
    width: 6px;
}
.modal-modern .modal-form-container::-webkit-scrollbar-track {
    background: transparent;
}
.modal-modern .modal-form-container::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}
.modal-modern .modal-form-container::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

@media (min-width: 768px) {
    .modal-modern .modal-form-container {
        min-height: 600px !important;
    }
}

.modal-modern .modal-form-title {
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #211D70 !important; /* Theme Deep Blue */
    margin: 0 !important;
}

.modal-modern .modal-form-subtitle {
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    margin-top: 6px !important;
    margin-bottom: 24px !important;
}

/* Absolute Close Button */
.modal-modern button.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #9ca3af;
    transition: color 0.2s ease;
    cursor: pointer;
    z-index: 10;
}

.modal-modern button.close-btn:hover {
    color: #4b5563;
}

/* Modern Input Wrapper & Fields */
.modal-input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.modal-input-wrapper:focus-within {
    border-color: #ED1C24 !important; /* Theme Red */
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1) !important;
}

.modal-input-wrapper .prepend-icon {
    padding-left: 16px;
    color: #9ca3af;
    display: flex;
    align-items: center;
}

.modal-input-wrapper .form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 14px 12px !important;
    height: auto !important;
    font-size: 15px !important;
    color: #374151 !important;
    width: 100% !important;
    margin: 0 !important;
}

.modal-input-wrapper .form-control::placeholder {
    color: #9ca3af !important;
}

.modal-input-wrapper .parent_password {
    height: auto !important;
    width: 100%;
}

.modal-input-wrapper .parent_email {
    margin-bottom: 0 !important;
    width: 100%;
}

.modal-input-wrapper .eye_icon {
    padding-right: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Modern Submit Button */
.modal-submit-btn {
    width: 100%;
    background-color: #ED1C24 !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 14px !important;
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.2) !important;
    transition: all 0.2s ease-in-out !important;
    font-size: 16px !important;
    margin-top: 8px !important;
}

.modal-submit-btn:hover {
    background-color: #d11219 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(237, 28, 36, 0.3) !important;
}

.modal-submit-btn:active {
    transform: translateY(0) !important;
}

/* Modern Social Login Buttons */
.modal-social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 12px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    transition: all 0.2s ease !important;
    font-size: 15px !important;
}

.modal-social-btn:hover {
    background-color: #f9fafb !important;
    border-color: #d1d5db !important;
}

/* Modal Divider */
.modal-divider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
}

.modal-divider-line {
    border: 0;
    border-top: 1px solid #e5e7eb;
    width: 100%;
    margin: 0;
}

.modal-divider-text {
    position: absolute;
    background-color: #fff;
    padding: 0 16px;
    font-size: 13px;
    color: #6b7280;
    top: 50%;
    transform: translateY(-50%);
}

/* Modal Call-To-Action (Footer links) */
.modal-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 24px !important;
}

.modal-cta-box {
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 12px 24px !important;
    background-color: rgba(249, 250, 251, 0.5);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: wrap;
}

.modal-cta-box p,
.modal-cta-box span {
    margin: 0 !important;
    display: inline-block !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    font-family: 'Josefin Sans', sans-serif !important;
}

.modal-cta-link {
    color: #211D70 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
    font-family: 'Josefin Sans', sans-serif !important;
}

.modal-cta-link:hover {
    color: #ED1C24 !important;
    text-decoration: underline !important;
}

/* Forgot Password Link styling */
.modal-modern .forgot-pass-link {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #211D70 !important;
    transition: color 0.2s ease !important;
}

.modal-modern .forgot-pass-link:hover {
    color: #ED1C24 !important;
    text-decoration: underline !important;
}

/* Custom Select2 Styling for Modern Modals */
.modal-modern .select2-container--default .select2-selection--single {
    background-color: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    height: auto !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
}

.modal-modern .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #374151 !important;
    padding: 0 !important;
    line-height: normal !important;
    text-align: left !important;
}

.modal-modern .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important;
    display: flex !important;
    align-items: center !important;
}

.modal-modern .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #ED1C24 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1) !important;
}

/* ============================================================
   BookAero Custom Toast Notification System
   ============================================================ */

#ba-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 380px;
    width: 380px;
}

.ba-toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
    animation: baSlideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.ba-toast.ba-toast-error   { border-left: 4px solid #ED1C24; }
.ba-toast.ba-toast-success { border-left: 4px solid #1a7a3c; }
.ba-toast.ba-toast-warning { border-left: 4px solid #a05c00; }
.ba-toast.ba-toast-info    { border-left: 4px solid #005cbb; }

.ba-toast:hover { transform: scale(1.02); }

.ba-toast.ba-toast-out {
    animation: baSlideOut 0.3s ease forwards;
}

.ba-toast-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-toast-icon {
    font-size: 22px !important;
}

.ba-toast-body {
    flex-grow: 1;
    min-width: 0;
}

.ba-toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.ba-toast-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.ba-toast-message {
    font-size: 14px;
    font-weight: 400;
    color: #5e3f3b;
    line-height: 1.5;
    margin: 0;
}

.ba-toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    margin-left: 8px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
.ba-toast-close:hover { color: #374151; }

/* No-title layout: message + close inline */
.ba-toast-body-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-grow: 1;
    min-width: 0;
}
.ba-toast-body-inline .ba-toast-message {
    flex-grow: 1;
    font-weight: 500;
    color: #374151;
}

@keyframes baSlideInRight {
    from { transform: translateX(110%) translateY(-12px); opacity: 0; }
    to   { transform: translateX(0)    translateY(0);     opacity: 1; }
}

@keyframes baSlideOut {
    from { transform: translateX(0);    opacity: 1; }
    to   { transform: translateX(110%); opacity: 0; }
}

@media (max-width: 480px) {
    #ba-toast-container {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
    }
}

/* ==========================================================================
   MODERN BOOKING ENGINE CARD (BANNER TAB) REDESIGN
   ========================================================================== */
.banner-sec .banner-content .nav.nav-pills::before {
    content: none;
}
   
.banner-sec .banner .banner-content .banner-slider .banner-carousel img {
    border-radius: 10px;
}

.banner-sec .banner .banner-content .banner-tab .tab-content .banner-form-submit {
    margin-top: 27px;
}

.banner-sec .banner .banner-content .banner-tab {
    /* background-color: rgba(33, 49, 69, 0.8) !important; */
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 10px !important;
    padding: 25px 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
    .banner-sec .banner .banner-content .banner-tab {
        border-radius: 24px !important;
        padding: 24px 16px !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

/* ==========================================================================
   Sticky Search Bar (custom-v2.css)
   ========================================================================== */

.sticky-search-bar {
    position: sticky;
    z-index: 1001;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.sticky-search-bar .compact-search-bar {
    margin: 8px 0;
}

.compact-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-left-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    width: 100%;
}

.compact-badge-desktop {
    flex-shrink: 0;
}

.compact-badge {
    background: rgba(237, 28, 36, 0.08);
    color: #ED1C24;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.compact-info-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%;
}

.compact-segment {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.compact-icon {
    display: flex;
    align-items: center;
    color: #9ca3af;
    flex-shrink: 0;
}

.compact-icon img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.compact-icon i {
    font-size: 18px;
    opacity: 0.6;
    color: #211D70;
}

.compact-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Outfit', 'Josefin Sans', sans-serif;
}

.route-text {
    color: #211D70;
    font-size: 15px;
    font-weight: 700;
}

.date-text, 
.pax-text {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
}

.compact-divider {
    width: 1.5px;
    height: 24px;
    background: #e5e7eb;
    margin: 0 20px;
    flex-shrink: 0;
}

.compact-edit-btn {
    background: #ED1C24;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(237, 28, 36, 0.25);
}

.compact-edit-btn:hover {
    background: #d11219;
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 6px 16px rgba(237, 28, 36, 0.35);
}

.compact-edit-btn img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

/* Detailed search dropdown (in-flow, pushes results down) */
.sticky-search-bar .detailed-search-dropdown {
    display: none;
    background: rgba(33, 29, 112, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: baFadeInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes baFadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form element styles inside the sticky search dropdown */
.sticky-search-bar .detailed-search-dropdown .tab-content label {
    color: #fff;
    font-weight: 400;
    font-size: 11px;
}

.sticky-search-bar .detailed-search-dropdown .tab-content input,
.sticky-search-bar .detailed-search-dropdown .tab-content select {
    font-size: 14px;
    color: #000;
    height: 44px;
    border-radius: 6px;
    padding: 10px;
}

.sticky-search-bar .detailed-search-dropdown .nav.nav-pills {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

.sticky-search-bar .detailed-search-dropdown .nav.nav-pills li a {
    display: block;
    padding: 7px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transition: 0.2s ease;
}

.sticky-search-bar .detailed-search-dropdown .nav.nav-pills li a:hover {
    background: rgba(255, 255, 255, 0.28);
}

.sticky-search-bar .detailed-search-dropdown .nav.nav-pills li a.active {
    background: #ED1C24;
    border-color: #ED1C24;
    color: #fff;
}

.sticky-search-bar .detailed-search-dropdown .btn-search-i {
    height: 44px;
    width: 44px;
    background-color: #ED1C24;
    border: 1px solid #ED1C24;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-search-bar .detailed-search-dropdown .multi_labelWeb {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 11px;
}

.sticky-search-bar .detailed-search-dropdown .tab-content .banner-form-submit {
    width: 100%;
    margin-top: 40px;
    background-color: #ED1C24;
    color: #fff;
    font-weight: 600;
    border: none;
    transition: 0.2s ease-in-out;
    height: 44px;
    border-radius: 6px;
}

.sticky-search-bar .detailed-search-dropdown .tab-content .banner-form-submit:hover {
    color: #fff;
    background: #ED1C24;
}

.sticky-search-bar .detailed-search-dropdown .form-modify {
    width: 100%;
}

.sticky-search-bar .detailed-search-dropdown .form-modify > .row > .col-md-3 {
    padding-left: 20px;
}

.sticky-search-bar .detailed-search-dropdown .form-modify > .row > .col-md-3 .form-group {
    margin-bottom: 16px;
}

.sticky-search-bar .detailed-search-dropdown .form-modify > .row > .col-md-3 .banner-form-submit {
    margin-top: 12px;
}

.sticky-search-bar .detailed-search-dropdown .dr-picker .input-group-prepend .input-group-calendar {
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 11;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Width helper overrides for detailed search form fields */
@media (min-width: 1200px) {
    .sticky-search-bar .detailed-search-dropdown .form-group .w-200 {
        width: 200px;
    }
    .sticky-search-bar .detailed-search-dropdown .form-group .w-160 {
        width: 160px;
    }
    .sticky-search-bar .detailed-search-dropdown .form-group .w-140 {
        width: 140px;
    }
    .sticky-search-bar .detailed-search-dropdown .form-group .w-130 {
        width: 130px;
    }
}

@media (min-width: 992px) {
    .sticky-search-bar .detailed-search-dropdown .form-group .w-200 {
        width: 100% !important;
    }
    .sticky-search-bar .detailed-search-dropdown .form-group .w-160 {
        width: 100% !important;
    }
    .sticky-search-bar .detailed-search-dropdown .form-group .w-130 {
        width: 100%;
    }
}

.sticky-search-bar .detailed-search-dropdown .form-group .w-200 {
    background-color: white !important;
    border-radius: 6px;
}

.sticky-search-bar .detailed-search-dropdown .tab-content input,
.sticky-search-bar .detailed-search-dropdown .tab-content select {
    appearance: none;
}

.sticky-search-bar .detailed-search-dropdown .departure_flex {
    justify-content: start;
}

@media (max-width: 991.98px) {
    .sticky-search-bar .detailed-search-dropdown .btn-search-i {
        margin-top: 10px;
        width: 100%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
    .compact-search-bar {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: center;
        padding: 12px 16px;
    }

    .compact-left-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .compact-info-wrapper {
        display: block;
        width: 100%;
    }

    .compact-badge {
        padding: 4px 10px;
        font-size: 10px;
    }

    .route-text {
        font-size: 15px;
        color: #211D70;
        font-weight: 700;
        line-height: 1.2;
        display: block;
    }

    .date-pax-text {
        font-size: 11.5px;
        color: #4b5563;
        font-weight: 600;
        line-height: 1.2;
        display: block;
    }

    .compact-edit-btn {
        width: 38px;
        height: 38px;
    }

    .sticky-search-bar .detailed-search-dropdown {
        padding: 16px;
        max-height: 80vh;
        overflow-y: auto;
        margin-bottom: 8px;
    }
}



.f-detail-modal .modal-content .modal-body .itinerary-table tbody tr:last-child,
.f-detail-modal .modal-content .modal-body .itinerary-table tbody tr:last-child th,
.f-detail-modal .modal-content .modal-body .itinerary-table tbody tr:last-child td{
    border-bottom: 0px solid #DEDFE0;
}

/* ==========================================================================
   Flight Details & Seat Selection Modals Vertical Scroll Fixes
   ========================================================================== */

/* Cap the card height inside the modern modal content */
.f-detail-modal .modal-content {
    max-height: 90vh !important;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
}

.f-detail-modal .modal-body {
    padding: 32px !important; /* Keep the padding for breathing room / floating card look */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(90vh - 64px) !important;
    box-sizing: border-box;
}

/* Position Close button in the top-right padding area outside the card */
.f-detail-modal button.close-btn {
    top: 8px !important;
    right: 8px !important;
    z-index: 10;
}

.f-detail-modal .f-detail-card {
    display: flex;
    flex-direction: column;
    max-height: 100% !important; /* Take full height of modal-body (90vh - 64px) */
    border: none !important;
    margin-bottom: 0 !important;
    overflow: hidden;
}

/* Ensure the card body is the scrollable container */
.f-detail-modal .f-detail-card .card-body {
    overflow-y: auto !important;
    flex: 1; /* Stretch to take remaining card height */
    padding: 24px 30px !important;
}

/* Custom scrollbar matching login/register design system */
.f-detail-modal .f-detail-card .card-body::-webkit-scrollbar {
    width: 6px;
}

.f-detail-modal .f-detail-card .card-body::-webkit-scrollbar-track {
    background: transparent;
}

.f-detail-modal .f-detail-card .card-body::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}

.f-detail-modal .f-detail-card .card-body::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* Ensure the reconfirmation card is scrollable */
.f-detail-modal .reconfirm-card {
    overflow-y: auto !important;
    max-height: 100% !important;
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar matching login/register design system for reconfirmation card */
.f-detail-modal .reconfirm-card::-webkit-scrollbar {
    width: 6px;
}

.f-detail-modal .reconfirm-card::-webkit-scrollbar-track {
    background: transparent;
}

.f-detail-modal .reconfirm-card::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}

.f-detail-modal .reconfirm-card::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* ==========================================================================
   Flight Booking Session Timer Banner Styling
   ========================================================================== */

.booking-timer-banner {
    position: sticky;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    padding: 12px 20px;
}

/* State-based styling overrides */
.booking-timer-banner.timer-normal {
    background: #ffffff;
    color: #211D70;
    border-bottom: 1px solid #e5e7eb;
}

.booking-timer-banner.timer-warning {
    background: #fffbeb;
    color: #b45309;
    border-bottom: 1px solid #fcd34d;
}

.booking-timer-banner.timer-danger {
    background: #fef2f2;
    color: #b91c1c;
    border-bottom: 1px solid #fca5a5;
}

/* Progress bar wrapper */
.booking-timer-banner .progress-line-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-timer-banner .progress-line {
    height: 100%;
    transition: width 1s linear;
}

.booking-timer-banner.timer-normal .progress-line {
    background-color: #211D70;
}

.booking-timer-banner.timer-warning .progress-line {
    background-color: #f59e0b;
}

.booking-timer-banner.timer-danger .progress-line {
    background-color: #ef4444;
}

/* Icon pulse keyframes */
.booking-timer-banner .timer-icon {
    animation: timerPulse 1.5s infinite ease-in-out;
}

@keyframes timerPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

#booking-timer {
    display: contents;
}
