  /* --- General Filter Container for Alignment --- */
  .filter-container {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  /* --- Date Filter Specific Styles --- */
  .filter-label {
    font-size: 10px !important;
    margin: 0px 0px 5px;
    color: #5e5e5e;

  }

  .date-filter {
    float: left;
    position: relative;
    display: inline-block;
    flex: 1;
  }

  .date-filter .filter-toggle {
    min-height: 75.5px;
    width: 100%;
    max-width: 220px;
    /* min-width: 220px; */
    display: block;
    padding: 10px 15px;
    border: 0.5px solid #EDEDED;
    color: var(--purple);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
    position: relative;
    line-height: 2;
  }
  .date-filter:not(.selected-option) {
    background-color: var(--cruxx-white);
  }
  .date-filter .filter-toggle svg {
    text-align: right;
    position: absolute;
    right: 14px;
    bottom: 25px;
    fill: var(--purple);
  }

  .date-filter .filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 440px;
    background-color: var(--cruxx-white);
    border: 1px solid #EDEDED;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    flex-direction: row;
    gap: 20px;
  }

  .date-filter:hover .filter-dropdown {
    display: flex;
  }

  .date-filter .dropdown-group {
    width: 50%;
  }

  .date-filter .group-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--purple);
  }

  .date-filter .dropdown-item {
    font-size: 12px !important;
    font-weight: bold;
    color: var(--purple);
    padding: 8px 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .date-filter .dropdown-item:hover {
    background-color: rgba(81, 0, 94, 0.1);
    color: var(--purple);
  }

  /* --- City-State Dropdown Specific Styles --- */
  .city-state-dropdown {
    position: relative;
    display: inline-block;
    flex: 1;
  }

  .city-state-dropdown .filter-toggle {
    min-height: 75.5px;
    width: 100% !important;
    max-width: 220px !important;
    /* min-width: 220px !important; */
    display: block;
    padding: 10px 15px;
    border: 0.5px solid #EDEDED;
    color: var(--purple);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
    position: relative;
    line-height: 2;
  }
  .city-state-dropdown:not(.selected-option) {
    background-color: var(--cruxx-white);
  }
  .city-state-dropdown .filter-toggle svg {
    text-align: right;
    position: absolute;
    right: 14px;
    bottom: 25px;
    fill: var(--purple);
  }

  .city-state-dropdown .filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 440px;
    background-color: var(--cruxx-white);
    border: 1px solid #EDEDED;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .city-state-dropdown:not(.disabled):hover .filter-dropdown {
    display: flex;
  }

  .page-attr-dropdown.disabled {
    opacity: 0.7;
  }

  .page-attr-dropdown.disabled:hover .filter-toggle {
    cursor: not-allowed!important;
    pointer-events: unset!important;
  }

  .city-state-dropdown .append-source-2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 440px;
    background-color: var(--cruxx-white);
    border: 1px solid #EDEDED;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    padding-left: 12px;
  }

  .city-state-dropdown:hover .append-source-2 {
    display: flex;
  }

  .city-state-dropdown .custom-search-bar {
    width: 100%;
    padding: 10px 15px;
    background-color: var(--cruxx-white);
    display: flex;
    align-items: center;
  }

  .city-state-dropdown .custom-search-bar input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #EDEDED;
    border-radius: 4px;
  }

  .city-state-dropdown .dropdown-groups-container {
    display: flex;
    gap: 20px;
  
  }

  .city-state-dropdown .dropdown-group {
    width: 50%;
  }

  .city-state-dropdown .group-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--purple);
    padding-left: 0.5rem;
  }

  .city-state-dropdown .dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    /* border-top: 1px solid #EDEDED;  */
    padding-top: 5px;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 5px;
  }

  .city-state-dropdown .dropdown-item {
    font-size: 12px !important;
    font-weight: bold;
    color: var(--purple);
    padding: 0!important;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .city-state-dropdown .dropdown-item:hover {
    background-color: rgba(81, 0, 94, 0.1);
    color: var(--purple);
  }

  .city-state-dropdown .dropdown-list::-webkit-scrollbar {
    width: 5px;
  }

  .city-state-dropdown .dropdown-list::-webkit-scrollbar-thumb {
    background-color: rgba(81, 0, 94, 0.3);
  }

  .city-state-dropdown .dropdown-list::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }

  /* --- Mobile Responsiveness --- */
  @media (max-width: 768px) {
    .filter-container {
      flex-direction: column;
      gap: 10px;
    }

    /* .date-filter .filter-dropdown,
    .city-state-dropdown .filter-dropdown {
      width: 100%;
    }

    .city-state-dropdown .dropdown-groups-container {
      flex-direction: column;
    }

    .city-state-dropdown .dropdown-group {
      width: 100%;
    } */
  }

  /* css for Highcharts labels */
  .highcharts-data-label text {
      font-size: 12px !important;
      font-weight: bold !important;
      fill: #51005E !important;
      font-family: 'Quicksand', sans-serif !important;
  }       
     
  .custom-search-results {
    display: none;
    position: absolute; 
    top: 100%; 
    left: 0;
    width: 100%; 
    max-height: 100px; 
    overflow-y: auto; 
    background-color: #fff;
    border: 1px solid #ededed;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 4px; 
  }
  
  .search-result-item {
    padding: 8px;
    font-size: 12px;
    color: var(--purple);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    
  }
  
  .search-result-item:hover {
    background-color: rgba(81, 0, 94, 0.1);
    color: var(--purple);
  }
  
  .no-results {
    font-size: 12px;
    color: #5e5e5e;
    padding: 8px;
    text-align: center;
  }
  
  .custom-search-results::-webkit-scrollbar {
    width: 5px;
  }
  
  .custom-search-results::-webkit-scrollbar-thumb {
    background-color: rgba(81, 0, 94, 0.3);
    border-radius: 4px;
   
  }
  
  .custom-search-results::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  .view-display {
    transition: all 0.3s ease;
  }
  
  /* Fullscreen overlay styling */
.fullscreen-options {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 1050;
  padding: 20px;
  overflow-y: auto;
  display: none;
}

.fullscreen-options:target {
  display: block;
}

.options-content {
  max-width: 600px;
  margin: 0 auto;
}

.hamburger-menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100vh;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  transition: all 0.5s ease-in-out;
  z-index: 1050;
}

.menu.active {
  left: 0;
}

.menu a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background-color: #ddd;
  padding: 5px 10px;
  border-radius: 5px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}