/* registroStyle.css */
#wizard1 .steps .current-info,
#wizard1 .steps .current-info.audible { display: none !important; }

#wizard1 .content > .title,
#wizard1 .content > h3.title { display: none !important; }

#wizard1 .steps ul,
#wizard1 .actions ul { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }

/* ─── Drag & Drop — documento estudiante ────────────────────────────────── */
.eiq-drop-zone {
  position: relative;
  border: 2px dashed #c8cfe0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  background: #f8f9fb;
  transition: border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.eiq-drop-zone:hover,
.eiq-drop-zone.drag-over {
  border-color: #4a7a28;
  background: #edf7f2;
}
.eiq-drop-zone.has-file {
  border-color: #4a7a28;
  background: #edf7f2;
}
/* El input real cubre toda la zona para abrir el picker al hacer clic */
.eiq-drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.eiq-drop-zone__body { pointer-events: none; }
.eiq-drop-zone__icon {
  font-size: 2.2rem;
  color: #6c757d;
  display: block;
  margin-bottom: .4rem;
}
.eiq-drop-zone.drag-over .eiq-drop-zone__icon,
.eiq-drop-zone.has-file   .eiq-drop-zone__icon { color: #4a7a28; }
.eiq-drop-zone__title {
  font-size: .95rem;
  font-weight: 600;
  color: #3d4451;
  margin: 0 0 .25rem;
}
.eiq-drop-zone__sep {
  display: block;
  color: #9aa0b4;
  font-size: .82rem;
  margin: .25rem 0;
}
.eiq-drop-zone__btn {
  display: inline-block;
  margin-top: .3rem;
  padding: .3rem 1.1rem;
  border-radius: 8px;
  border: 1px solid #4a7a28;
  color: #4a7a28;
  font-size: .82rem;
  font-weight: 600;
  background: #fff;
  transition: background .15s, color .15s;
}
.eiq-drop-zone:hover .eiq-drop-zone__btn {
  background: #4a7a28;
  color: #fff;
}
.eiq-drop-zone__btn--change {
  border-color: #6c757d;
  color: #6c757d;
}
.eiq-drop-zone:hover .eiq-drop-zone__btn--change {
  background: #6c757d;
  color: #fff;
}
