/* Estilos para o seletor de código de país */
.whatsapp-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.country-code-select {
  flex: 0 0 100px;
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--text-color);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;

  option {
    background-color: var(--background-light);
    color: black;
  }
}

.country-code-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15);
}

.phone-input {
  flex: 1;
}

.country-flag {
  width: 20px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.select-option {
  display: flex;
  align-items: center;
}

/* Estilos para as opções de tipo de contato */
.contact-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.contact-type-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contact-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-type-option label {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--background-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-type-option label i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.contact-type-option input[type="radio"]:checked + label {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.contact-type-option:hover label {
  border-color: var(--primary-color);
} 