.nav-item .nav-link.active {
    color: rgb(7, 179, 164);
}

.logo {
    width: 70px;
    float: left;
    margin-right: 10px;
}



/* Body */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 2px;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
}

/* ===== Navbar Start ===== */
#navbar {
    background: #f9f9f9;
}


#logo {
    font-size: 20px;
    font-weight: 450;
    color: black;
    text-shadow: 0px 1px 1px black;
    margin-bottom: 5px;
}

.navbar-toggler span {
    color: #ffee00;
}

#logo span {
    color: #ffee00;
}

.navbar-nav {
    margin-left: 20px;
}

.nav-item .nav-link {
    font-size: 16px;
    font-weight: 550;
    color: black;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: 0.5s ease;
}

.nav-item .nav-link:hover {
    background: #ffa500;
    color: white;
}

.nav-item .nav-link .active {
    background: #aaa19bf3;
    color: white;
}

#navbar form button {
    background: orange;
    color: white;
    border: none;
}

/* ===== Navbar End ===== */



/* Section Packages Start */
.main-txt h2 {
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
}

.main-txt h2 span {
    color: #ffa500;
}

.packages .card {
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.packages .card img {
    border-radius: 5px;
}

.packages .card .card-body {
    background: transparent;
}

.packages .card .card-body h3 {
    font-size: 25px;
    font-weight: 600;
}

.packages .card .card-body p {
    font-size: 15px;
}

.checked {
    color: #ffa500;
}

.star i {
    font-size: 15px;
}

.packages .card .card-body h6 {
    font-size: 20px;
}

.packages .card .card-body a {
    padding: 10px;
    text-decoration: none;
    background: #ffa500;
    color: white;
    border-radius: 5px;
}

/* Section Packages End */




/* Section Services Start */
.services {
    background: #f9f9f9;
    margin-top: 50px;
}

.services .card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none;
    cursor: pointer;
}

.services .card i {
    font-size: 80px;
    text-align: center;
    color: #ffa500;
    margin-top: 20px;
}

.services .card .card-body h3 {
    font-weight: 600;
}

.services .card .card-body {
    text-align: center;
}

/* Section Services End */





/* Section Gallary Start */
.gallary {
    margin-top: 50px;
}

.gallary .card {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    cursor: pointer;
}

.gallary .card img {
    border-radius: 10px;
    transition: 0.5s;
}

.gallary .card img:hover {
    transform: scale(1.1);
}

/* Section Gallary End */




/* About Start */
.about {
    padding: 50px;
    margin-top: 50px;
    background: #f9f9f9;
}

.about .card {
    border-radius: 10px;
}

.about .card img {
    border-radius: 10px;
}

.about h2 {
    font-weight: 450;
    letter-spacing: 1px;
}

.about p {
    font-weight: 400;
}

#about-btn {
    width: 150px;
    height: 38px;
    border: none;
    border-radius: 10px;
    background: #ffa500;
    color: white;
    letter-spacing: 2px;
    font-weight: 550;
    transition: 0.5s ease;
    cursor: pointer;
}

#about-btn:hover {
    width: 170px;
}

@media (max-width:765px) {
    .about {
        padding: 0;
    }
}

/* why section  in about */

.why-getmecab {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.why-getmecab h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.why-getmecab h2 span {
    font-size: 18px;
    font-weight: bold;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.feature-box img {
    height: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .feature-box {
        flex: 1 1 calc(50% - 30px);
    }
}


@media (max-width: 600px) {
    .why-getmecab h2 {
        text-align: center;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .about p {
        margin: 20px auto;
        text-align: center;
    }

    #about-btn {
        display: block;
        margin: 20px auto;
        width: fit-content;
    }

    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        flex: 1 1 100%;
        max-width: 90%;
        margin-bottom: 15px;
    }
}

/* About End */


/* Contact Css start  */

.contact-section {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-content {
    padding: 40px;
}

.contact-content h2 {
    font-size: 1rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.4rem;
    color: #ff9800;
}



.contact-info {
    font-size: 0.8rem;
}

.contact-info strong {
    display: block;
    font-weight: 500;
    color: #222;
    font-size: 0.9rem;
}


.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}



/* Enquiry Form */
.enquiry-form {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.enquiry-form h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #222;
    text-align: center;
    margin: 20px auto;
}

.enquiry-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.enquiry-form textarea {
    grid-column: 1 / -1;
    min-height: 120px;
}

.enquiry-form button {
    grid-column: 1 / -1;
    padding: 10px 30px;
    font-size: 1rem;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    justify-self: center;
}


.enquiry-form button:hover {
    background-color: #e68900;
}

/* ✅ Responsive for Tablets and Mobile */
@media (max-width: 768px) {
    .enquiry-form form {
        grid-template-columns: 1fr;
    }

    .enquiry-form textarea,
    .enquiry-form button {
        grid-column: 1 / -1;
    }
}

.map-section {
    width: 100%;
    margin-top: 20px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 250px;
    }
}

/* Contact Css End  */




/* Booking dropdown form CSS */

.form-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("/static/images/shyambaba.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.form {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.dropdown-wrapper {
    position: relative;
    flex: 1;
    min-width: 120px;
}

input[readonly] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    color: #000;
    box-sizing: border-box;
}

input[readonly]::placeholder {
    color: #666;
}

.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    border-radius: 6px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown li {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #222;
    transition: background-color 0.2s ease-in-out;
}

.dropdown li:hover {
    background-color: #ffe600;
}

.hidden {
    display: none;
}

.submit {
    width: 20%;
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: rgb(236, 195, 61);
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    height: 42px;
}

.submit:hover {
    background-color: #ffe600;
    color: black;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .form {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-wrapper,
    .submit {
        width: 100%;
    }

    input[readonly],
    .submit {
        font-size: 14px;
        padding: 10px;
        height: 40px;
    }

    .dropdown li {
        font-size: 14px;
    }
}

/* Responsive: Small Mobile Devices */
@media (max-width: 480px) {
    .form {
        padding: 15px;
    }

    input[readonly],
    .submit {
        font-size: 13px;
        padding: 6px 10px;
        height: 45px;
    }

    .dropdown li {
        padding: 10px;
    }
}

/* Extra Small Screens */
@media (max-width: 320px) {

    input[readonly],
    .submit {
        font-size: 12px;
        padding: 5px 8px;
        height: 32px;
    }
}

/* Booking dropdown form CSS End */




/* Intro Section */
.intro {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    color: #fff;
}

.intro span {
    color: #f5c400;
}

/* Intro Section End */



/* Why Section */
.why {
    padding: 30px 20px;
    text-align: center;
}

.why span {
    color: #f5c400;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.features div {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

/* Why Section End */


/* Card Section */
.card-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.card-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
    justify-content: center;
}

.card1 {
    width: 100%;
    max-width: 320px;
    background: #e9e6e6;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 430px;
    transition: transform 0.3s;
}

.card1:hover {
    transform: translateY(-5px);
}

.card1 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card1 h3 {
    font-size: 18px;
    color: #f5c400;
    text-align: center;
    margin: 15px 0 10px;
}

.card1 p {
    font-size: 14px;
    color: #555;
    margin: 0 15px 20px;
    text-align: center;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0 20px;
}

.card-btn,
.detail-btn {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
    width: 30%;
}

.card-btn {
    background-color: #28a745;
    color: white;
}

.card-btn:hover {
    background-color: #218838;
}

.detail-btn {
    background-color: #007bff;
    color: white;
}

.detail-btn:hover {
    background-color: #0056b3;
}

/* Card Section End */



/* Carousel CSS */
.testimonial-carousel {
    background-color: #111;
    padding: 60px 20px;
    border-top: 5px solid #ffd700;
}

.carousel-item {
    text-align: center;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote::before {
    content: "❝";
    font-size: 3rem;
    color: #ffd700;
    position: absolute;
    top: -20px;
    left: -20px;
}

.testimonial-name {
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: #ccc;
}

/* Carousel CSS End */



/* Footer Css */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-brand .logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.footer-brand .logo span {
    color: #f5c400;
}

.footer-brand .tagline {
    margin-top: 4px;
    font-size: 16px;
    color: #ccc;
    line-height: 1.5;
}

.footer-icons a {
    color: #f8f3f3;
    text-decoration: none;
}

.footer-icons a:hover {
    text-decoration: underline;
}

.footer-icons span {
    display: inline-block;
    padding: 8px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 5px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 3;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 2px solid #f5c400;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* 🔹 Added anchor styles for footer links */
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f5c400;
}

.footer-col ul li:hover {
    color: #f5c400;
}

/* Small-device tweaks (excluding header/menu-toggle/cta-buttons) */
@media (max-width: 480px) {
    .booking .form {
        flex-direction: column;
        gap: 15px;
    }

    .booking input,
    .booking .submit {
        width: 100%;
        max-width: none;
    }

    .card-container {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        max-width: 100%;
        min-height: auto;
    }

    .intro h1,
    .why h2 {
        font-size: 1.6rem;
    }

    .intro p,
    .why p,
    .features div p {
        font-size: 0.9rem;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-col,
    .footer-brand {
        width: 100%;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .booking .form {
        flex-direction: column;
        align-items: center;
    }

    .booking input,
    .booking .submit {
        width: 100%;
        max-width: 300px;
    }

    .footer-container,
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features div {
        max-width: 200px;
    }
}

@media (min-width: 1024px) {
    .footer-columns {
        flex-wrap: nowrap;
    }

    .footer-col {
        min-width: 200px;
    }
}

.container1 {
    max-width: 1000px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}


.info {
    margin-top: 20px;
}

.info h2 {
    margin-bottom: 10px;
}

.info p {
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    background: #007bff;
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .detail-image {
        max-height: 250px;
    }

    .info h2 {
        font-size: 20px;
    }

    .info p {
        font-size: 15px;
    }
}

.info-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tabs {
    display: flex;
    flex-wrap: nowrap;
    /* Default: no wrap for desktop */
    overflow-x: auto;
    gap: 10px;
    border-bottom: 3px solid #e0e0e0;
    margin: 20px 0;
    padding: 0 10px;
    max-width: 100vw;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Edge */
}

/* Individual Tab Buttons */
.tab {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background-color: #f8f8f8;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.tab:hover {
    background-color: #f0f0f0;
}

.tab.active {
    background-color: #ffd700;
    color: #000;
}

/* Tab Content */
.tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-in-out;
    max-width: 100%;
}

.tab-content.active {
    display: block;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Content Styling */
.tab-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.tab-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.tab-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

hr {
    margin: 25px 0;
    border: none;
    border-top: 1px solid #ccc;
}


/* ---------- Responsive Enhancements ---------- */

@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap;
        /* ✅ Allow wrapping */
        overflow-x: unset;
        /* ✅ Remove horizontal scroll */
        justify-content: flex-start;
    }

    .tab {
        font-size: 14px;
        padding: 10px 16px;
        white-space: normal;
        /* ✅ Allow text to wrap if needed */
    }

    .tab-content {
        padding: 16px;
    }

    .tab-content h2 {
        font-size: 17px;
    }

    .tab-content li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tab {
        font-size: 13px;
        padding: 10px 14px;
    }

    .tab-content {
        padding: 14px;
    }

    .tab-content h2 {
        font-size: 16px;
    }

    .tab-content li {
        font-size: 13px;
    }
}

.info-section {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.left-column h2 {
    text-align: center;
    margin: 10px;
}



.right-column {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-form h2 {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}

.booking-form input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

.booking-form .submit {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #ffd700;
    border: none;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.booking-form .submit:hover {
    background: #f0c000;
}

@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
    }
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

#tripForm {
    max-width: 800px;
    margin: auto;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
select,
textarea {
    padding: 8px;
    font-size: 14px;
}


/* tourdetail payment button css start  */

.payment-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
}

.payment-box {
    flex: 1;
    text-align: center;
    border: 1px solid #ccc;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #fefefe, #f0f0f0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.payment-btn {
    margin-top: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #f79809, #ffe259);
    /* Orange to Yellow gradient */
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    background: linear-gradient(135deg, #ffe259, #f79809);
    /* Reverse on hover */
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
    }

    .payment-box {
        width: 100%;
    }
}


/* tourdetail payment button css end  */


/* Circle for enabled dates of calendar tourdetail page start */

/* Circle for enabled dates */
.flatpickr-day.available-circle {
    border: 1px solid orange;
    background-color: gold;
    border-radius: 50%;
    font-weight: bold;
    color: black;
}

/* Red cross for future-disabled dates only */
.flatpickr-day.disabled {
    position: relative !important;
    overflow: visible !important;
    color: #ccc !important;
    pointer-events: none;
    background-color: #f0f0f0 !important;
}

.flatpickr-day.disabled::before,
.flatpickr-day.disabled::after {
    content: "";
    position: absolute;
    top: 45%;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: rgb(161, 152, 152);
    opacity: 0.8;
    z-index: 10;
}

.flatpickr-day.disabled::before {
    transform: rotate(45deg);
}

.flatpickr-day.disabled::after {
    transform: rotate(-45deg);
}

/* Don't show red cross on past dates (auto-disabled by flatpickr) */
.flatpickr-day.flatpickr-disabled[aria-disabled="true"]:not(.disabled)::before,
.flatpickr-day.flatpickr-disabled[aria-disabled="true"]:not(.disabled)::after {
    display: none !important;
}

/* Circle for enabled dates of calendar tourdetail page end */