/* CONTENEDOR PRINCIPAL */
.rsp-domain-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px;
  background: #f0f4f8;
  border-radius: 40px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.rsp-domain-label {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}

/* FORMULARIO */
.rsp-domain-form-modern {
  flex: 1;
}

/* GRUPO DE ENTRADA (input + select + botón) */
.rsp-domain-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #dcdfe4;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

/* SELECT */
.rsp-domain-select {
  max-width: 100px;
  min-width: 80px;
  flex: 0 0 auto;
  padding: 12px 14px;
  font-size: 16px;
  color: #444;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
  border-left: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}

/* WWW */
.rsp-domain-prefix {
  padding: 12px 20px;
  background: #f5f5f5;
  font-size: 16px;
  color: #888;
  border-right: 1px solid #e0e0e0;
}

/* INPUT */
.rsp-domain-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 18px;
  font-size: 16px;
  border: none;
  outline: none;
  background: transparent;
}

/* BOTÓN */


/* RESULTADO */
#rsp-domain-result {
  margin-top: 16px;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  display: none;
  transition: all 0.3s ease;
}

/* DISPONIBLE */
.rsp-available {
  display: block;
  background-color: #d1f7d1;
  color: #155724;
  border: 1px solid #28a745;
}

/* NO DISPONIBLE */
.rsp-unavailable {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #dc3545;
}

/* BOTÓN de búsqueda */
.rsp-domain-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: none;
  background-color: #ffc107;
  cursor: pointer;
}
