  .select-like {
    position: relative;
    font-family: system-ui, sans-serif;
  }

  .select-like input {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 34px 8px 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
    cursor: text;
  }

  .select-like .toggle-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
  }

  .options {
    position: absolute;
    z-index: 50;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: none;
  }

  .options.open { display: block; }
  .options li {
    list-style: none;
    padding: 8px 10px;
    cursor: pointer;
  }
  .options li:hover,
  .options li.active {
    background: #f0f0f0;
  }

  .helper {
    margin-top: 6px;
    font-size: 13px;
    color: #dee2e6;
  }