
    .fhl-widget-wrapper {
      position: fixed;
      z-index: 1000;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 8px;
      height: 48px;
      width: calc(100% - 30px);
      max-width: 480px;
      padding: 0 8px 0 12px;
      margin: 0;
      border-radius: 14px;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }
  
  .fhl-widget-wrapper *, .fhl-widget-wrapper *::before, .fhl-widget-wrapper *::after {
      box-sizing: border-box;
  }
  
  .fhl-widget-wrapper .fhl-search-input {
      flex-shrink: 0;
      width: 60px;
      height: 32px;
      padding: 0 4px;
      margin: 0;
      font-size: 14px;
      color: #333;
      background-color: transparent;
      border: none;
      border-bottom: 1px solid #ccc;
      border-radius: 0;
      -webkit-appearance: none;
  }
  .fhl-widget-wrapper .fhl-search-input:focus {
      outline: none;
      border-bottom-color: #007bff;
  }
  
  .fhl-widget-wrapper .fhl-list-container {
      flex: 1;
      min-width: 0;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      padding: 0;
      margin: 0;
      scroll-behavior: smooth;
      -ms-overflow-style: none;
      scrollbar-width: none;
  }
  .fhl-widget-wrapper .fhl-list-container::-webkit-scrollbar {
      display: none;
  }
  
  .fhl-widget-wrapper .fhl-list-item {
      flex-shrink: 0;
      display: block;
      padding: 7px 14px;
      margin: 0;
      font-size: 14px;
      font-weight: 500;
      color: #333;
      text-decoration: none;
      white-space: nowrap;
      background-color: #f1f1f1;
      border: 1px solid #ddd;
      border-radius: 10px;
      transition: background-color 0.2s ease;
  }
  .fhl-widget-wrapper .fhl-list-item:hover {
      background-color: #e5e5e5;
  }
  
  .fhl-widget-wrapper .fhl-scroll-arrow {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      padding: 0;
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      color: white;
      background-color: #007bff;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  @media (min-width: 600px) {
      .fhl-widget-wrapper {
          left: auto;
          right: 20px;
          transform: none;
          width: auto;
      }
  }