.elementor-1550 .elementor-element.elementor-element-f813d74{--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-b899ac1 *//* === CONTENEDOR PRINCIPAL DEL PANEL === */
#panel-encargado {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #f9f9f9;
  border: 2px solid #008542;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
}

/* === TÍTULO === */
#panel-encargado h2 {
  color: #006738;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* === ETIQUETAS E INPUTS === */
#panel-encargado label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #006738;
}

#panel-encargado input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  margin-top: 5px;
  transition: border-color 0.3s ease;
}

#panel-encargado input[type="text"]:focus {
  border-color: #008542;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 133, 66, 0.2);
}

/* === BOTÓN GENERAL === */
#panel-encargado button:not(#form-cambio-estado button) {
  display: inline-block;
  background: #008542;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

#panel-encargado button:hover {
  background-color: #006c3e;
  transform: translateY(-2px);
}

#panel-encargado button:active {
  transform: scale(0.98);
}

/* === OPCIONES DE ESTADO COMO TARJETAS === */
.estado-opcion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-top: 12px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.estado-opcion input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #008542;
  border-radius: 50%;
  position: relative;
  margin: 0;
}

.estado-opcion input[type="radio"]:checked {
  background-color: #008542;
}

.estado-opcion input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.estado-opcion input[type="radio"]:checked::before {
  transform: scale(1);
}

/* === ETIQUETAS CON ICONOS === */
.estado-opcion label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}

.estado-opcion label[for="estado-atendida"]::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2e7d32;
}

.estado-opcion label[for="estado-cancelada"]::before {
  content: "\f00d"; /* fa-xmark */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #c62828;
}

.estado-opcion label[for="estado-noasistio"]::before {
  content: "\f071"; /* fa-triangle-exclamation */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #f57c00;
}

.estado-opcion label::before {
  font-size: 16px;
}

/* === BOTÓN CAMBIAR ESTADO === */
#form-cambio-estado button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  background-color: #008542;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 260px;
}

#form-cambio-estado button::before {
  content: "\f044"; /* fa-pen-to-square */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

#form-cambio-estado button:hover {
  background-color: #006c3e;
  transform: translateY(-2px);
}

/* === MENSAJES CONFIRMACIÓN === */
#mensaje-confirmacion {
  font-weight: 600;
  margin-top: 20px;
}

#mensaje-confirmacion span {
  display: block;
  padding: 10px;
  border-radius: 8px;
}

#mensaje-confirmacion span[style*="color:green"] {
  background-color: #e0f2f1;
  color: #00695c !important;
}

#mensaje-confirmacion span[style*="color:red"] {
  background-color: #fdecea;
  color: #b71c1c !important;
}

/* === RESPONSIVO === */
@media screen and (max-width: 600px) {
  #panel-encargado {
    padding: 20px;
  }

  #panel-encargado input,
  #panel-encargado button {
    font-size: 15px;
  }

  .estado-opcion label {
    font-size: 14px;
  }

  #form-cambio-estado button {
    font-size: 15px;
    padding: 10px 20px;
  }
}/* End custom CSS */