.custom-select {
    position: relative;
    user-select: none;
    padding-right: 16px !important;
  }
  
  .select-display {
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 18px;
    color: #404564;
  }
  
  .select-display:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(100,150,250,0.15);
  }

  .display-text.placeholder {
    font-weight: 500;
    color: rgba(64, 69, 100, 0.5);
  }

  @media (max-width: 1024px) {
    .display-text.placeholder {
      font-size: 14px;
    }
    .select-display {
      font-size: 14px;
    }
  }
  
  .display-text.normal {
    color: #404564;
  }

  .chev {
    margin-left: 8px;
    font-size: 20px;
    transform-origin: center;
    transition: transform .15s ease;
    color: #404564 !important;
    height: 100%;
  }
  
  .custom-select.open .chev { transform: rotate(180deg); }
  
  .options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    border: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
    border-radius: 6px;
    max-height: 200px;
    overflow: auto;
    z-index: 50;
    padding: 6px;
    display: none;
  }
  
  .custom-select.open .options { display: block; }
  
  .option {
    padding: 8px 8px;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1.8;
  }
  .option:hover, .option.focused { color: #718ff2; background-color: #f0f6ff; }
  
  .option.selected {
    background: #e7f0ff;
    font-weight: 600;
  }
  