/**
 * Estilos del bloque "Estado de cuenta" para Webflow.
 * Tipografía: define --eca-font en el sitio (Settings → Custom code o en una clase)
 * o asigna la fuente en Webflow al contenedor padre; este bloque hereda si no usas la variable.
 */
.estado-cuenta-wf {
  font-family: var(--eca-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
  color: #1a1a1a;
  line-height: 1.5;
  max-width: 100%;
}

.estado-cuenta-wf .titulo_mba h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.estado-cuenta-wf .detalle_mba p {
  margin: 0 0 1.25rem;
  color: #444;
}

.estado-cuenta-wf .form_mba .label_mba {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.estado-cuenta-wf .input_mba {
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.estado-cuenta-wf .input_mba.mba_100 {
  width: 100%;
  max-width: 420px;
}

.estado-cuenta-wf .btn_mba {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #323232;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.estado-cuenta-wf .btn_mba:hover {
  background: #1f1f1f;
}

.estado-cuenta-wf .btn_mba:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.estado-cuenta-wf .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.estado-cuenta-wf .estado-cuenta-tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.estado-cuenta-wf .estado-cuenta-tabla thead th {
  background-color: #323232;
  color: #ffffff;
  padding: 0.65rem 0.5rem;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.estado-cuenta-wf .estado-cuenta-tabla tbody td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.estado-cuenta-wf .aviso_mora {
  padding: 0.75rem 1rem;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  color: #664d03;
  margin-bottom: 0.5rem;
}

.estado-cuenta-wf .aviso_mora p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .estado-cuenta-wf .estado-cuenta-tabla {
    font-size: 12px;
  }

  .estado-cuenta-wf .titulo_mba h1.nombre {
    font-size: 14px;
  }
}
