/* cf7-country-select.css */
.cf7-country-select-wrapper {
  min-height: 64px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fff;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cf7-country-select-wrapper input[type="tel"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  flex: 1;
  padding: 0;
  margin-left: 0.5rem;
}

/* RTL: Country selector positioning */
[dir="rtl"] .cf7-country-select-wrapper {
  flex-direction: row-reverse;
}

[dir="rtl"] .cf7-country-select-wrapper input[type="tel"] {
  margin-left: 0;
  margin-right: 0.5rem;
  text-align: right;
  direction: rtl;
}

/* RTL: Ensure country code dropdown stays on the right */
[dir="rtl"] .cf7-country-select-wrapper .relative {
  order: 2;
}

[dir="rtl"] .cf7-country-select-wrapper input[type="tel"] {
  order: 1;
}
.cf7-country-select-wrapper input[type="text"][placeholder="Search countries..."] {
  padding-top: 12px !important;
}
.cf7-country-select-wrapper .relative {
  position: relative;
}

.single-form-container .modal-field-group.focused .cf7-country-select-wrapper .relative,
.single-form-container .modal-field-group.has-value .cf7-country-select-wrapper .relative {
  position: relative;
  top: 6px;
}
.cf7-country-select-wrapper .absolute {
  position: absolute;
}
.cf7-country-select-wrapper .z-50 {
  z-index: 50;
}
.cf7-country-select-wrapper .rounded {
  border-radius: 8px;
}
.cf7-country-select-wrapper .border-gray-200 {
  border-color: #e7e7e7;
}
.cf7-country-select-wrapper .bg-white {
  background: #fff;
}
.cf7-country-select-wrapper .hover\:bg-gray-50:hover {
  background: #f6f6f6;
}
.cf7-country-select-wrapper .text-gray-900 {
  color: #222;
}
.cf7-country-select-wrapper .text-gray-500 {
  color: #888;
}
.cf7-country-select-wrapper .text-lg {
  font-size: 1.125rem;
}
.cf7-country-select-wrapper .text-sm {
  font-size: 0.875rem;
}
