    /* Animation Styles from Bootstrap Navbar Example */
    @media (min-width: 768px) {
        .animate-tour-search-bar {
          animation-duration: 0.3s;
          -webkit-animation-duration: 0.3s;
          animation-fill-mode: both;
          -webkit-animation-fill-mode: both;
        }
      }
      
      @keyframes slideIn-tour-search-bar {
        0% {
          transform: translateY(1rem);
          opacity: 0;
        }
      
        100% {
          transform: translateY(0rem);
          opacity: 1;
        }
      }
      
      @-webkit-keyframes slideIn-tour-search-bar {
        0% {
          -webkit-transform: translateY(1rem);
          -webkit-opacity: 0;
        }
      
        100% {
          -webkit-transform: translateY(0);
          -webkit-opacity: 1;
        }
      }
      
      .slideIn-tour-search-bar {
        -webkit-animation-name: slideIn-tour-search-bar;
        animation-name: slideIn-tour-search-bar;
      }
      
      .custom-dropdown-tour-search-bar-selected:hover {
          background-color: #f8f9fa;
      }
      
      .custom-dropdown-options-tour-search-bar {
          max-height: 0;
          opacity: 0;
          overflow: hidden;
          transition: max-height 0.3s ease, opacity 0.3s ease;
          position: absolute;
          width: 100%;
          border: 1px solid #ced4da;
          border-top: none;
          background-color: #fff;
          z-index: 1000;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          -webkit-border-radius: 16px !important;
          -moz-border-radius: 16px !important;
          border-radius: 16px !important;
          margin-top: 0.5em;
      }
      /* The first and last options need to have border radius at the top or bottom */
      .custom-dropdown-option-tour-search-bar:first-child {
          border-top-left-radius: 16px;
          border-top-right-radius: 16px;
      }
      
      .custom-dropdown-option-tour-search-bar:last-child {
          border-bottom-left-radius: 16px;
          border-bottom-right-radius: 16px;
      }
      
      .custom-dropdown-tour-search-bar.open .custom-dropdown-arrow-tour-search-bar {
          transform: rotate(-90deg); /* Rotate the arrow when open */
      }
      
      
      .custom-dropdown-tour-search-bar.open .custom-dropdown-options-tour-search-bar {
          max-height: 300px; /* Adjust as needed */
          opacity: 1;
          /* Apply the slideIn animation */
          animation: slideIn 0.3s ease forwards;
          -webkit-animation: slideIn 0.3s ease forwards;
      }
      
      .custom-dropdown-option-tour-search-bar {
          padding: 8px 12px;
          cursor: pointer;
          transition: background-color 0.2s ease;
      }
      
      .custom-dropdown-option-tour-search-bar:hover {
          background-color: #f1f1f1;
      }
      
      .custom-dropdown-option-tour-search-bar.selected {
          background-color: #e9ecef;
      }
      .custom-dropdown-container-tour-search-bar {
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
      }

      .tour-search-bar-custom-select-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-radius: 0 0 4px 4px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .tour-search-bar-custom-select-options.show {
        max-height: 300px;
        overflow-y: auto;
        opacity: 1;
    }
    
    .tour-search-bar-custom-option {
        padding: 8px 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: background-color 0.2s ease;
        font-weight: 100 !important;
    }
    .option-text,
    .select-text {
        font-weight: 100 !important;
        font-size: 14px;
    }
    
    .tour-search-bar-custom-option:hover {
        background-color: #f5f5f5;
    }
    
    .tour-search-bar-custom-option i {
        margin-right: 8px;
        color: #555;
        width: 18px;
        text-align: center;
    }
    
    /* Animation for opening dropdown */
    @keyframes slideDown {
        from { max-height: 0; opacity: 0; }
        to { max-height: 300px; opacity: 1; }
    }
    
    .tour-search-bar-custom-select-options.show {
        animation: slideDown 0.3s ease forwards;
    }
    .custom-dropdown-container {
        background-color: rgba(255, 255, 255);
        padding-left: 1em;
        padding-right: 1em;
        color: #999;
        border-radius: 6px;
        border: 1px solid #ccc;
    }
    
    /* Mobile Responsive Enhancements */
    @media (max-width: 767px) {
        .custom-dropdown-container {
            flex-direction: column !important;
            padding: 1rem;
            max-width: 90%;
            margin: 0 auto;
        }
        
        .tour-search-bar-custom-select-container {
            width: 100%;
            min-width: 100%;
            margin: 0.5rem 0;
            border-right: none;
            border-bottom: 1px solid #ddd;
            padding-bottom: 1rem;
        }
        
        .tour-search-bar-custom-select-container:last-child {
            border-bottom: none;
        }
        
        .tour-search-bar-custom-select {
            width: 100%;
        }
        
        .banner_search_cta {
            margin: 0.5rem 0 0 0 !important;
        }
        
        .tour-search-bar-custom-select-options {
            position: fixed;
            top: auto;
            left: 5%;
            right: 5%;
            bottom: 0;
            width: 90%;
            border-radius: 10px 10px 0 0;
            max-height: 0;
            z-index: 1050;
        }
        
        .tour-search-bar-custom-select-options.show {
            max-height: 60vh;
        }
        
        .html-banner_text {
            padding: 0 15px;
        }
        @media (max-width: 767px) {
            .tour-search-bar-custom-select-container {
              position: relative !important;
              overflow: visible;
            }
          
            .tour-search-bar-custom-select-options {
              position: absolute !important;
              bottom: auto !important;
              top: calc(100% + 4px) !important;
              left: 5% !important;
              right: 5% !important;
              width: 90% !important;
              border-radius: 10px 10px 0 0;
            }
          }
    }