/* =============================== */
/*          SELECT2                */
/* =============================== */

/* Conteneur Select2 */
.select2-container--default .select2-selection--single {
  height: auto;
  min-height: 44px;
  border: 1px solid var(--border, #e6edf5) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.2;
  padding: .6rem .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main, #0f172a);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 10px;
}

/* Dropdown */
.select2-container .select2-dropdown {
  border: 1px solid var(--border, #e6edf5);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
}

.select2-results__options {
  max-height: 320px;
}

.select2-results__option {
  padding: .55rem .7rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0f172a;
}

.select2-results__option--highlighted[aria-selected] {
  background: #f1f5f9;
  color: #0f172a;
}

/* Images dans options (drapeaux) */
.select2-results__option img,
.select2-container--default .select2-selection--single .select2-selection__rendered img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #e5e7eb;
}

/* Drapeaux (aperçu simple) */
.flag-select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-preview {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f3f4f6;
}
