.elementor-1543 .elementor-element.elementor-element-4c70df1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a394afa *//* Contenedor principal */
#consulta-cita {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid #008542;
  border-radius: 15px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", sans-serif;
}

/* Etiqueta del campo */
#consulta-cita label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #006738;
}

/* Campo de texto */
#consulta-cita input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

#consulta-cita input[type="text"]:focus {
  outline: none;
  border-color: #008542;
  box-shadow: 0 0 0 2px rgba(0, 133, 66, 0.2);
}

/* Botón con ícono centrado */
#consulta-cita button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  background-color: #008542;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: inherit;
  position: relative;
}

/* Ícono FontAwesome en el botón */
#consulta-cita button::before {
  content: "\f002"; /* fa-search */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  margin-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

/* Garantiza que Font Awesome funcione en i */
#consulta-cita button i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#consulta-cita button:hover {
  background-color: #006c3e;
  transform: translateY(-2px);
}

#consulta-cita button:active {
  transform: scale(0.98);
}

/* Resultado de consulta */
#resultado-cita {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-top: 15px;
}

/* Mensaje de advertencia cuando la cita ya pasó */
#resultado-cita em {
  display: block;
  margin-top: 10px;
  color: #e53935;
  font-style: normal;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

#resultado-cita em::before {
  content: "\f071"; /* Exclamation-triangle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #e53935;
}

/* Responsivo */
@media screen and (max-width: 600px) {
  #consulta-cita {
    padding: 20px;
  }

  #consulta-cita input,
  #consulta-cita button {
    font-size: 15px;
  }
}/* End custom CSS */