.opacity-90 {
    opacity: 0.9;
    -webkit-opacity: 0.9; /* For older versions of Safari and Chrome */
    -moz-opacity: 0.9; /* For older versions of Firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; /* For IE8 and earlier */
    filter: alpha(opacity=90); /* For IE8 and earlier */
}

.opacity-85 {
    opacity: 0.85;
    -webkit-opacity: 0.85; /* For older versions of Safari and Chrome */
    -moz-opacity: 0.85; /* For older versions of Firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)"; /* For IE8 and earlier */
    filter: alpha(opacity=85); /* For IE8 and earlier */
}

.carousel-item img {
    max-width: 100%; /* Set the maximum width of the images to 100% */
    max-height: 100%; /* Set the maximum height of the images to 100% */
    width: auto; /* Allow the width of the images to adjust according to their aspect ratio */
    height: auto; /* Allow the height of the images to adjust according to their aspect ratio */
    display: block; /* Ensure the images are displayed as block elements */
    margin: auto; /* Center the images horizontally */
    object-fit: contain; /* Ensure the images maintain aspect ratio while fitting within the container */
}

.swiper-container {
    overflow: hidden; /* Prevent images from overflowing their container */
}

.swiper-pricing-container {
    /* overflow: hidden; Prevent images from overflowing their container */
}

/* Style for the active slide */
.swiper-pricing .swiper-slide-active {
    opacity: 1; /* Full opacity for active slide */
    transition: opacity 0.5s ease; /* Smooth transition */
}

/* Style for the previous and next slides */
.swiper-pricing .swiper-slide {
    opacity: 0.5; /* Reduced opacity for non-active slides */
    transition: opacity 0.5s ease; /* Smooth transition */
}

    /* Hover effect to increase visibility slightly */
    .swiper-pricing .swiper-slide:hover {
        opacity: 0.7;
    }

/* Optional: Enhance the fading effect */
.swiper-pricing .swiper-slide-prev,
.swiper-pricing .swiper-slide-next {
    opacity: 0.7; /* Slightly higher opacity for immediate neighbors */
}

.pricing-item img {
    max-height: 300px;
    max-width: 100%;
    object-fit: contain;
}

.faq-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.faq-active .faq-list {
    max-height: 1000px; /* Adjust this value according to your content height */
}


#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above other elements on the page */
}

    #loading-overlay .spinner-border {
        width: 2rem;
        height: 2rem;
    }

.w-40 {
    width: 160px;
    min-width: 160px;
}

.nav-tabs .nav-link {
    width: 50%; /* Adjust as needed */
    text-align: center;
    color: #fff; /* Default text color */
    background-color: #31385e; /* Default background color */
    border: none; /* Remove border */
}

    .nav-tabs .nav-link.active {
        color: #ffc107; /* Active text color */
        background-color: #0e1d34; /* Active background color */
        border-color: #dee2e6 #dee2e6 #fff; /* Active border color */
    }


.custom-control-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.room-selection-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

    .room-selection-card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.active-card {
    border: 2px solid #007bff; /* Active border color */
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.5); /* Active shadow */
}

.custom-radio {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa; /* Background color */
}



/* Custom CSS for check icon */
/*.check-icon {
    display: none;
}

.custom-control-input:checked ~ .check-icon {
    display: inline-block;
}*/
.active-card {
    background-color: #f8f9fa; /* Change this to the desired active background color */
}

.card.active-card {
    border-top: 4px solid #007bff; /* Blue border for the top */
    border-left: 4px solid #007bff; /* Blue border for the left */
}

.bg-lightgray {
    background-color: #F5F5F5;
}

.bg-darkgray {
    background-color: #DEDEDE;
}


.confirmation-text {
    font-size: 24px; /* Adjust text size as needed */
    margin-top: 10px; /* Add space between the icon and text */
}

.lg-checkbox {
    transform: scale(1.5); /* Adjust the scale factor as needed */
}

.booking-figures {
    max-width: 300px;
    min-width: 300px;
    padding: 0;
}

@media (max-width: 767.98px) {
    .booking-figures {
        max-width: 100%;
        min-width: 220px;
        padding: 10px; /* Adjust padding as needed for mobile */
    }
}
.nav-link.nav-tab {
    min-width: 140px;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Display ellipsis (...) for overflow text */
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

bg-pending {
    background-color: #ffc107; /* Bootstrap yellow */
    color: #212529; /* Dark text for contrast */
}

.bg-approved {
    background-color: #28a745; /* Bootstrap green */
    color: #fff; /* Light text for contrast */
}

.bg-rejected,
.bg-cancelled {
    background-color: #dc3545; /* Bootstrap red */
    color: #fff; /* Light text for contrast */
}

.bg-completed {
    background-color: #17a2b8; /* Bootstrap cyan */
    color: #fff; /* Light text for contrast */
}

.bg-onhold {
    background-color: #6c757d; /* Bootstrap gray */
    color: #fff; /* Light text for contrast */
}

.bg-inprogress {
    background-color: #007bff; /* Bootstrap blue */
    color: #fff; /* Light text for contrast */
}
.blur-content {
    filter: blur(10px); /* Increase the blur value to make it more pronounced */
    pointer-events: none; /* Optional: Prevent interactions while loading */
}

/* Messenger Floating Button Styles */
.messenger-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006AFF 0%, #0052CC 100%);
    color: white !important;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 106, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

    .messenger-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 106, 255, 0.4);
    }

    .messenger-btn i {
        font-size: 1.5rem;
        margin-right: 8px;
    }

.messenger-text {
    display: inline-block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .messenger-btn {
        padding: 12px 15px;
    }

    .messenger-text {
        display: none;
    }

    .messenger-btn i {
        margin-right: 0;
        font-size: 1.8rem;
    }
}