/* Custom styles */

:root {
    /* Main Color Palette */
    --bs-primary: #9DC183; /* Verde Salvia - Accent elements and buttons */
    --bs-secondary: #D8CAB8; /* Madera Claro - Sections of content and details */
    --bs-light: #F5F5F0; /* Blanco Hueso - Background and secondary content areas */
    --bs-dark: #2D2D2D; /* Gris Antracita - Main text and important elements */
    --bs-body-color: #2D2D2D; /* Gris Antracita - Text */
  }
  
  /* Button Styles */
  .btn-primary {
    background-color: #9DC183 !important; /* Verde Salvia */
    border-color: #9DC183 !important; /* Verde Salvia */
    color: #F5F5F0 !important; /* Blanco Hueso */
  }
  
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #8BA76D !important; /* Darker shade of Verde Salvia */
    border-color: #8BA76D !important;
  }

    /* Button Styles */
    .btn-outline-primary {
        background-color: white !important; /* Verde Salvia */
        border-color: #9DC183 !important; /* Verde Salvia */
        color: #9DC183 !important; /* Blanco Hueso */
    }
    
    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
        background-color: #8BA76D !important; /* Darker shade of Verde Salvia */
        border-color: #8BA76D !important;
        color:white !important;
    }

.sidebar-item2 {
    transition: background-color 0.3s, color 0.3s;
    margin-top: 5px;
    margin-bottom: 5px;
    border: none;
    cursor:pointer;
}
.sidebar-item2:hover {
    background-color: #d3d3d3;
    color: #000;
    border-radius: 0.25rem;

}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.hero-section {
    background-image: url('../images/index.png'); /* Placeholder background image */
    background-size: cover;
    background-position: center;
    color: white;
    height: 90vh;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Desktop Search Bar */
.search-bar-desktop {
    background-color: white;
    border-radius: 50px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar-desktop .form-control {
    border: none;
    border-radius: 50px;
    outline: none;
    padding: 10px 20px;
}

.search-bar-desktop .form-control.wide {
    flex-grow: 2;
}

.search-bar-desktop .form-control:not(.wide) {
    flex-grow: 1;
}

.search-bar-desktop button {
    background-color: #9DC183;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Search Bar */
.search-bar-mobile {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 90%;
}

.search-bar-mobile .form-control {
    border: none;
    border-radius: 10px;
    outline: none;
    padding: 10px 20px;
    width: 100%;
}

.search-bar-mobile button {
    background-color: #9DC183;
    color: white;
    border-radius: 10px;
    padding: 10px 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.nav-container {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 15px 30px; 
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-center {
    display: flex;
    align-items: center;
}

.nav-center a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-right: 20px;
    position: relative;
    padding-bottom: 5px;
}

.nav-center a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: white;
    bottom: 0;
}

.icon-container {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    padding: 5px 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.icon-container i {
    font-size: 20px;
    color: black;
    margin-right: 10px;
}

.icon-container .profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.icon-container::before {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background-color: #9DC183;
    border-radius: 50%;
    border: 2px solid white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 10%;
    }

    .search-bar-desktop {
        display: none; /* Hide desktop search bar on mobile */
    }

    .search-bar-mobile {
        display: flex; /* Show mobile search bar on mobile */
    }

    .nav-container {
        padding: 10px 20px;
    }

    .nav-container img {
        height: 35px;
    }

    .icon-container {
        padding: 8px 12px;
    }

    .nav-center {
        display: none;
    }
}

@media (min-width: 769px) {
    .search-bar-mobile {
        display: none; /* Hide mobile search bar on desktop */
    }
}

/* Carousel Section */
.popular-locations {
    padding: 50px 0;
    text-align: center;
    background-color: #ffffff;
}

.popular-locations h2 {
    font-weight: bold;
    margin-bottom: 30px;
}

.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
}

.carousel-item {
    flex: 0 0 auto;
    width: 25%; /* Adjust the width according to how many images you want to show per slide */
    display: flex;
    justify-content: center;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.location-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: black;
    text-align: center;
}

.carousel-control-prev, .carousel-control-next {
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-size: 100%, 100%;
    background-image: none;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M4.146.146a.5.5 0 0 1 .708.708L1.707 4l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M3.646.146a.5.5 0 0 1 .708 0l3.5 3.5a.5.5 0 0 1 0 .708l-3.5 3.5a.5.5 0 1 1-.708-.708L6.293 4 3.646 1.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%; /* Adjust this to change the width of the underline */
    height: 2px;
    background-color: white;
    bottom: 0;
}

.nav-container .separator {
    color: white;
    margin-left: 10px;
    margin-right: 10px;
}

.custom-container {
    background-color: white;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}
.custom-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.custom-card img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}
.card-title {
    margin-top: 10px;
    font-weight: 500;
}

.recommended-container {
    margin-top: 50px;
}
.recommended-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.custom-card2 {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor:pointer !important;
}
.custom-card2 img {
    border-radius: 10px;
    width: 100%;
    cursor:pointer !important;
    aspect-ratio: 1.4/1;
    object-fit: cover;
}
.favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    color: #FF5A5F;
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
}
.night {
    color: #888;
}
.rating {
    color: #9DC183;
}
.recommended-container a {
    font-size: 1.1rem;
    font-weight: bold;
    color: #9DC183;
}
.custom-card2 h5 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.host-section {
    background-color: #2C2C2C; /* Dark overlay color */
    border-radius: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background-image: url('https://picsum.photos/1200/600'); /* Replace with actual image */
    background-size: cover;
    background-position: center right;
    height: 550px; /* Maintain the height for 1275x600 aspect ratio */
}

.host-text {
    max-width: 50%;
    z-index: 2;
    position: relative;
}

.host-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.host-text h2 {
    font-size: 3.75rem; /* Increased font size */
    margin-bottom: 20px;
    line-height: 1.2;
}

.host-text h2 span {
    color: #9DC183; /* Match button color */
}

.host-text p {
    font-size: 1.75rem; /* Slightly larger paragraph font size */
    margin-bottom: 30px;
}

.btn-host {
    text-align: center;
    background-color: #9DC183;
    color: white;
    padding: 15px 30px; /* Adjusted padding for larger button */
    border-radius: 5px;
    font-size: 1rem; /* Larger button text */
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.btn-host:hover {
    background-color: #e04e53;
    color: white;
}

@media (max-width: 768px) {
    .btn-host {
        width:80%;
    }
    .host-text {
        max-width: 100%;
        z-index: 2;
        position: relative;
    }
    .host-text {
        max-width: 100%;
        text-align: center;
    }
    .btn-host {
        left: 50%;
        transform: translateX(-50%);
    }
    .host-text h2 {
        font-size: 2.5rem; /* Increased font size */
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .host-text h2 span {
        color: #9DC183; /* Match button color */
    }

    .host-text p {
        font-size: 1.75rem; /* Slightly larger paragraph font size */
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1150px) {
    .host-text h2 {
      font-size: 2.5rem; /* Increased font size */
      margin-bottom: 20px;
      line-height: 1.2;
    }
  }

  @media screen and (min-width: 1150px) and (max-width: 1400px) {
    .host-text h2 {
      font-size: 3rem; /* Increased font size */
      margin-bottom: 20px;
      line-height: 1.2;
    }
  }



        .support-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-item {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.support-item img {
    max-width: 40px;
    margin-bottom: 15px;
}

.support-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.support-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

.divider {
    height: 60px;
    width: 1px;
    background-color: #ddd;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .support-section {
        flex-direction: column;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
}

.support-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-align: left;
}

.support-item .icon {
    font-size: 2rem;
    color: #9DC183;
    margin-right: 15px;
}

.support-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.support-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

.divider {
    height: 60px;
    width: 1px;
    background-color: #ddd;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .support-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-item {
        padding: 20px 0;
    }

    .divider {
        display: none;
    }
}

.home-section {
}

.home-header {
    text-align: left;
    margin-bottom: 30px;
}

.home-header h2 {
    font-size: 2rem;
    font-weight: bold;
}

.home-header p {
    font-size: 1.1rem;
    color: #777;
}

.home-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    color: white;
    height: 400px;
}

.home-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.home-card:hover img {
    transform: scale(1.05);
}

.home-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 15px;
}

.home-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #9DC183;
}

.home-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .home-card {
        height: 250px;
    }

    .home-header h2 {
        font-size: 1.75rem;
    }

    .home-header p {
        font-size: 1rem;
    }
}

/* General Footer Styling */
.footer-section {
    background-color: #fff;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Container styling */
.footer-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Logo and Social Media */
.footer-logo {
    text-align: left;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #666;
    margin-top: 20px;
}

/* Footer Links */
.footer-links h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #333;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Subscription Form */
.footer-subscribe h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-subscribe p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 15px;
}

.footer-subscribe form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-subscribe input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
}

.footer-subscribe button {
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
}

.footer-subscribe button:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section .row > div {
        margin-bottom: 20px;
    }

    .footer-subscribe form {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-subscribe input[type="email"],
    .footer-subscribe button {
        width: 100%;
        margin-bottom: 10px;
    }
}

.glide__arrow {
background-color: white; /* White background */
border-radius: 50%; /* Circular shape */
width: 40px; /* Adjust the size as needed */
height: 40px; /* Adjust the size as needed */
border: none; /* No border */
color: black; /* Arrow color */
font-size: 20px; /* Arrow size */
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 45%;
transform: translateY(-50%);
cursor: pointer;
box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Optional: Adds shadow for better visibility */
outline: none; /* Removes the outline to clean up the appearance */
}

.glide__arrow--left {
left: -5px; /* Distance from the left side */
}

.glide__arrow--right {
right: -5px; /* Distance from the right side */
}

/* Optional: Using content for cleaner arrows if not using text like 'Prev' or 'Next' */
.glide__arrow--left:before,
.glide__arrow--right:before {
content: ''; /* Clearing the text */
}

.glide__arrow--left:before {
content: '\2039'; /* Pseudo element for left arrow, can also use Font Awesome */
}

.glide__arrow--right:before {
content: '\203A'; /* Pseudo element for right arrow, can also use Font Awesome */
}


/* Navbar */
.navbar-brand {
    font-size: 24px;
    color: #9DC183;
    font-weight: bold;
}

.navbar-brand img {
    width: 40px;
    margin-right: 10px;
}

/* Search bar container is centered using absolute positioning */
.search-bar-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 100%;
    z-index: 1000 !important;
}

.search-bar {
    background-color: white;
    border-radius: 50px;
    border: 1px solid #e0e0e0; /* Grey border */
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    z-index: 10000 !important;

}

.search-bar .form-control {
    border: none;
    border-radius: 50px;
    padding: 5px 10px;
    outline: none;
}

.search-bar .form-control.wide {
    flex-grow: 2;
}

.search-bar .form-control:not(.wide) {
    flex-grow: 1;
}

.search-bar button {
    background-color: #9DC183;
    color: white;
    border-radius: 50px;
    padding: 8px 12px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container {
    display: flex;
    align-items: center;
    background-color: #e0e0e0;
    border-radius: 50px;
    padding: 5px 10px;
    z-index: 1000 !important;

}

.icon-container i {
    font-size: 20px;
    color: black;
    margin-right: 10px;
    z-index: 10000 !important;

}

.icon-container .profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 10000 !important;

}

/* Remove box shadows */
.search-bar,
.icon-container {
    box-shadow: none;
}

/* Responsive: Hide search bar on mobile */
@media (max-width: 768px) {
    .search-bar-container {
        display: none;
    }

    .icon-container {
        padding: 8px 12px;
    }

    .nav-center {
        display: none;
    }
}

.glide__arrow {
    background-color: white; /* White background */
    border-radius: 50%; /* Circular shape */
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Adjust the size as needed */
    border: none; /* No border */
    color: black; /* Arrow color */
    font-size: 20px; /* Arrow size */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Optional: Adds shadow for better visibility */
    outline: none; /* Removes the outline to clean up the appearance */
}

.glide__arrow2 {
    top:50%;
}

.glide__arrow--left {
    left: -5px; /* Distance from the left side */
}

.glide__arrow--right {
    right: -5px; /* Distance from the right side */
}

.glide__arrow--left2 {
    left: 10px !important; /* Distance from the left side */
}

.glide__arrow--right2 {
    right: 10px !important; /* Distance from the right side */
}

/* Optional: Using content for cleaner arrows if not using text like 'Prev' or 'Next' */
.glide__arrow--left:before,
.glide__arrow--right:before {
    content: ''; /* Clearing the text */
}

.glide__arrow--left:before {
    content: '\2039'; /* Pseudo element for left arrow, can also use Font Awesome */
}

.glide__arrow--right:before {
    content: '\203A'; /* Pseudo element for right arrow, can also use Font Awesome */
}

#profileDropdown .dropdown-toggle::after {
    display: none !important;
}



/* Airbnb-style Google Places Autocomplete dropdown */
/* Airbnb-style Google Places Autocomplete dropdown */
.pac-container {
    border: none !important;
    box-shadow: 0 15px 46px -10px rgba(26, 26, 29, 0.3) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-top: 10px !important;
    padding: 8px 0 !important;
    font-family: "Circular", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif !important;
    background-color: white !important;
    z-index: 9999 !important;
}

/* Style each suggestion item */
.pac-item {
    padding: 8px 16px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    line-height: 20px !important;
    border-top: none !important;
    display: flex !important;
    align-items: flex-start !important; /* Changed from center to allow text wrapping */
    min-height: 36px !important; /* Ensure minimum height for item */
}

.pac-item:hover {
    background-color: #F7F7F7 !important;
}

/* Fix inconsistent icons by removing original icons and adding consistent ones */
.pac-icon {
    /* Hide the original icon */
    background-image: none !important;
    position: relative !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important; /* Prevent icon from shrinking */
}

/* Add a consistent icon using ::before pseudo-element */
.pac-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23717171" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="10" r="3"/><path d="M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 7 8 11.7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Remove specific icon classes that Google adds */
.pac-icon-marker, .pac-icon-search, .pac-icon-recent {
    background-image: none !important;
}

/* Create a container for the text content */
.pac-item-text-container {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important; /* Important for text truncation */
    overflow: hidden !important;
}

/* Style the matched text */
.pac-item-query {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #222222 !important;
    padding-right: 4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
}

/* Secondary text (city, country) */
.pac-secondary-text {
    font-size: 14px !important;
    color: #717171 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
}

/* Add subtle animation when showing the dropdown */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.pac-container {
    animation: fadeIn 0.2s ease-out forwards !important;
}


/* Search Container */
.btn-close {
    position: absolute;
    right: 20px;
    background-color: transparent;
    opacity: 1;
  }
  
  .btn-close:focus {
    box-shadow: none;
  }
  
  .modal-body {
    padding: 5px 20px;
  }
  
  .search-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #eee;
  }
  
  .search-section label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #222;
  }
  
  .search-section input {
    border: none;
    padding: 12px 0;
    font-size: 16px;
    color: #222;
  }
  
  .search-section input:focus {
    box-shadow: none;
    border: none;
    outline: none;
  }
  
  /* Date Picker Styling */
  .date-picker-container {
    margin-top: 10px;
  }
  
  /* Guests Section */
  .guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .guest-info h6 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
  }
  
  .guest-info p {
    margin: 5px 0 0 0;
    color: #717171;
    font-size: 14px;
  }
  
  .guest-counter {
    display: flex;
    align-items: center;
  }
  
  .counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #b0b0b0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  
  .counter-btn.minus {
    color: #b0b0b0;
  }
  
  .counter-btn:hover {
    border-color: #222;
  }
  
  .guest-counter span {
    margin: 0 16px;
    font-size: 16px;
    width: 20px;
    text-align: center;
  }
  
  /* Footer */
  .modal-footer {
    justify-content: center;
    padding: 20px;
    border-top: none;
  }
  
  .btn-search {
    background-color: #9DC183;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
  }
  
  .btn-search:hover {
    background-color: #8BA76D;
    color: white;
  }