/* Search bar */
  .search-suggestion {
            transition: background-color 0.2s;
  }
  .search-suggestion:hover {
      background-color: #f3f4f6;
  }
  .search-suggestion.highlighted {
      background-color: #e5f4f0;
  }
  .suggestion-type {
      font-size: 0.75rem;
      color: #6b7280;
  }

  /* Original styles */
  .sub-dropdown a:hover {
   background-color: #b7cbc6;
   color: #38574b;
  }

  .sub-dropdown a {
   display: flex;
   align-items: center;
   width: 100%;
   border-color: white;
  }


  /* Center the dropdown */
  .sub-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar > a {
    transition: color 0.2s ease-in-out;
  }

  .navbar > a:hover {
    color: #5a8073;
  }
  
  /* Center the main dropdown */
  #medical-services-dropdown {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mobile menu styles */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #5a8073;
    transition: left 0.3s ease;
    z-index: 100;
    overflow-y: auto;
    padding-top: 60px;
    box-shadow: 4px 0px 10px rgba(0,0,0,0.2);

  }
  
  .mobile-menu.open {
    left: 0;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .mobile-menu-item {
    display: block;
    padding: 15px 20px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
  }
  
  .mobile-menu-item:hover {
    background-color: #496b60;
  }
    
  .mobile-submenu {
    background-color: #496b60;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    font-size: 14px;
  }
  
  .mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .mobile-submenu-toggle {
    display: flex;
    align-items: start;
    justify-content: start;
  }
  
  .mobile-submenu-toggle i {
    transition: transform 0.3s ease;
  }
  
  .rotate-icon {
    transform: rotate(180deg);
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
  }