
  .select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 14px 45px 14px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #2d3748;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  }

  /* .custom-select:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  } */

  .custom-select:focus + .select-arrow {
    color: #036661;
    transform: translateY(-50%) rotate(180deg);
  }

  .custom-select option {
    background: #ffffff;
    color: #2d3748;
    padding: 12px 16px;
    font-size: 16px;
  }

  .custom-select option:hover {
    background: #f7fafc;
  }

  .custom-select option:checked,
  .custom-select option:selected {
    background: #036661;
    color: #ffffff;
  }

  .select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #718096;
    transition: all 0.3s ease;
    z-index: 0;
  }

  .custom-select:hover + .select-arrow {
    color: #4a5568;
  }

  /* .select-wrapper:hover .custom-select {
    transform: translateY(-1px);
  } */

  .select-wrapper:active .custom-select {
    transform: translateY(0);
  }
  .form-control-custom .select-wrapper {
    margin-top: 8px;
  }

  .form-control-custom
    .error-message:not(:empty)
    ~ .select-wrapper
    .custom-select,
  .form-control-custom .select-wrapper .custom-select.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
  }

  .form-control-custom .select-wrapper .custom-select.valid {
    border-color: #38a169;
  }

  @media (prefers-color-scheme: dark) {
    .custom-select {
      background: #2d3748;
      border-color: #4a5568;
      color: #ffffff;
    }

    .custom-select option {
      background: #2d3748;
      color: #ffffff;
    }

    .custom-select:hover {
      border-color: #718096;
    }
  }

  @media (max-width: 768px) {
    .custom-select {
      padding: 12px 40px 12px 14px;
      font-size: 16px; /* Prevents zoom on iOS */
    }

    .select-arrow {
      right: 14px;
    }
  }