  /* Match Tailwind input styling */
  .select2-container .select2-selection--single {
    height: auto !important; /* ~44px similar to p-3 */
    padding: 0.75rem;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); /* shadow-sm */
  }

  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 1.5rem;
    font-size: 0.875rem;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0.75rem;
  }

  .select2-container--focus .select2-selection--single {
    border-color: #6366f1; /* focus:border-indigo-500 */
    box-shadow: 0 0 0 2px rgba(99,102,241,0.2); /* focus:ring-indigo-500 */
  }

  .select2-dropdown {
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .select2-search--dropdown .select2-search__field {
    padding: 0.75rem !important;
    border-radius: 0.5rem;
  }

  .select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0px !important;
    font-size: inherit !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af !important;
  }