        /* Notario Net (adaptado al estilo del template) */
.nn-label { display:block; font-weight:600; margin: 10px 0 8px; }
.nn-input {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}
.nn-input:focus { border-color: rgba(0,0,0,0.35); }
.nn-hint { display:block; font-size: 12px; opacity: .75; margin-top: 6px; }

.nn-actions { display:flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.nn-btn-ghost {
  background: transparent !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
}

.nn-msg { margin-top: 12px; font-size: 13px; }
.nn-msg.ok { color: #0a7a2f; }
.nn-msg.err { color: #b00020; }

.nn-meta { font-size: 13px; opacity: .8; margin-bottom: 10px; }

.nn-status-row { display:flex; align-items:center; gap: 10px; margin: 10px 0 14px; }
.nn-status-label { font-weight: 700; }

.nn-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}
.nn-badge.done { background: rgba(10, 122, 47, 0.10); color: #0a7a2f; }
.nn-badge.progress { background: rgba(17, 17, 17, 0.08); color: #111; }
.nn-badge.wait { background: rgba(176, 0, 32, 0.08); color: #b00020; }

/* Timeline */
.nn-timeline {
  position: relative;
  padding-left: 18px;
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
.nn-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.10);
}
.nn-step {
  position: relative;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}
.nn-step::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.22);
  background: #fff;
}
.nn-step.completed {
  background: rgba(10, 122, 47, 0.06);
  border-color: rgba(10, 122, 47, 0.18);
}
.nn-step.completed::before {
  border-color: rgba(10, 122, 47, 0.55);
  background: rgba(10, 122, 47, 0.12);
}
.nn-step.current {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.18);
}
.nn-step.pending { opacity: 0.75; }

.nn-step-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.nn-step-title h4 { margin: 0; font-size: 15px; font-weight: 800; }
.nn-step-date { font-size: 12px; opacity: 0.75; white-space: nowrap; }
.nn-step-desc { margin: 0; font-size: 13px; opacity: 0.92; }

.nn-footnote { margin-top: 16px; font-size: 12px; opacity: .75; }

/* QR Scan */
.nn-qr-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0,0,0,0.02);
}

.nn-qr-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.nn-qr-view{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background:#000;
  max-width: 680px;
}

.nn-qr-video{
  width:100%;
  height:auto;
  display:block;
}

.nn-qr-canvas{ display:none; }

.nn-qr-hint{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.55);
  color:#fff;
  font-size: 12px;
}

.nn-qr-output{
  margin-top: 12px;
  font-size: 13px;
}

.nn-qr-output-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:baseline;
}

.nn-qr-label{ font-weight:800; }
.nn-qr-text{
  opacity: 0.9;
  word-break: break-word;
}

