:root {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #3b82f6;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --primary-navy: #0f2744;
  --primary-blue: #1d4ed8;
  --primary-hover: #1e40af;
  --success-green: #15803d;
  --warning-amber: #b45309;
  --danger-red: #b91c1c;
  --radius-sm: 4px;
  --radius-md: 8px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* Header Notarial */
.app-header {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-bottom: 3px solid var(--primary-blue);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notary-seal {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}

.brand-text h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.brand-text p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.header-metadata {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
}

.meta-label {
  color: #94a3b8;
  font-size: 0.72rem;
}

.meta-val {
  color: #ffffff;
  font-weight: 600;
}

.badge-status-secure {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Navegación */
.app-nav {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  padding: 0 2rem;
  gap: 0.5rem;
  overflow-x: auto;
}

.nav-item {
  background: transparent;
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.nav-item:hover {
  color: var(--primary-blue);
  background: #f1f5f9;
}

.nav-item.active {
  color: var(--primary-blue);
  font-weight: 600;
  border-bottom-color: var(--primary-blue);
}

/* Layout Principal */
.app-main {
  flex: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 1.75rem 2rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-title h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.grid-layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .grid-layout-2col {
    grid-template-columns: 1fr;
  }
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
}

.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
}

.card-header-flex .card-heading {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Formularios */
.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-input-sm {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.sub-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-hover);
}

.btn-dark {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-dark:hover:not(:disabled) {
  background-color: #1e3a8a;
}

.btn-success {
  background-color: var(--success-green);
  color: #ffffff;
}

.btn-warning {
  background-color: var(--warning-amber);
  color: #ffffff;
}

.btn-secondary {
  background-color: #f1f5f9;
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Módulo de Sensor y Huella */
.scanner-section {
  margin-top: 1rem;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.scanner-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.sensor-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.finger-preview-container {
  width: 100%;
  height: 240px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.finger-preview-container.large {
  height: 280px;
}

.finger-preview-container canvas {
  height: 100%;
  object-fit: contain;
}

.scanner-prompt {
  position: absolute;
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

/* Cámara Web */
.camera-block {
  margin-top: 0.75rem;
}

.camera-viewport {
  position: relative;
  width: 100%;
  height: 180px;
  background: #0f172a;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.camera-viewport video,
.camera-viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.face-guide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.face-oval {
  width: 100px;
  height: 130px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.face-instructions {
  font-size: 0.7rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 4px;
}

.camera-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* Métricas */
.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.metric-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.m-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.m-val {
  font-size: 0.82rem;
  color: var(--text-primary);
}

.text-success {
  color: var(--success-green);
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ==========================================================================
   ESTILO FORMAL DEL STICKER NOTARIAL (Imprimible en papel térmico / adhesivo)
   ========================================================================== */
.sticker-wrapper {
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
}

.notary-sticker {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 2px solid #0f2744;
  padding: 0.9rem;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.35;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.sticker-header {
  text-align: center;
  border-bottom: 1.5px solid #000000;
  padding-bottom: 6px;
  margin-bottom: 6px;
}

.sticker-republic {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.sticker-notary-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker-officer {
  font-size: 9.5px;
  font-weight: 600;
  color: #333333;
}

.sticker-resolution {
  font-size: 8px;
  font-style: italic;
  font-weight: 600;
  color: #222222;
  margin-top: 2px;
  line-height: 1.15;
}

.sticker-act-badge {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-size: 8.5px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 3px;
}

.sticker-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.stk-lbl {
  font-size: 9.5px;
  font-weight: bold;
  color: #333333;
}

.stk-val {
  font-size: 10px;
}

.stk-val.bold {
  font-weight: bold;
}

.sticker-divider {
  border-top: 1px dashed #777777;
  margin: 6px 0;
}

.sticker-citizen-grid {
  display: flex;
  gap: 10px;
  align-items: center;
}

.stk-photo-box {
  width: 60px;
  height: 75px;
  border: 1px solid #000000;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.stk-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stk-citizen-info {
  flex: 1;
}

.stk-name {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stk-doc {
  font-size: 10.5px;
  font-weight: bold;
  color: #111111;
}

.stk-match-info {
  font-size: 9.5px;
  font-weight: bold;
  color: #15803d;
  margin-top: 2px;
}

.stk-finger {
  font-size: 9px;
  color: #444444;
}

.sticker-legal-text {
  font-size: 7.5px;
  text-align: justify;
  color: #333333;
  margin-top: 4px;
}

.sticker-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
  padding-top: 4px;
}

.stk-qr {
  width: 60px;
  height: 60px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  text-align: center;
  padding: 2px;
}

.badge-titular {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-block;
}

.badge-encargado {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-block;
}

.stk-signatures {
  flex: 1;
  text-align: right;
}

.stk-sig-line {
  border-top: 1px solid #000000;
  width: 190px;
  margin-left: auto;
  font-size: 8px;
  font-weight: bold;
  padding-top: 2px;
  margin-top: 20px;
  text-align: center;
}

.stk-sig-res {
  font-size: 7px;
  font-style: italic;
  color: #333333;
  width: 190px;
  margin-left: auto;
  text-align: center;
  line-height: 1.1;
  margin-top: 2px;
}

.stk-hash {
  font-family: var(--font-mono);
  font-size: 7px;
  color: #666666;
  margin-top: 3px;
}

/* Banner de Estado */
.verify-status-banner {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.verify-status-banner.neutral {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text-secondary);
}

.verify-status-banner.success {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
  font-weight: 600;
}

.verify-status-banner.error {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
  font-weight: 600;
}

/* Tablas */
.table-responsive {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.data-table th {
  background: #f8fafc;
  color: var(--text-secondary);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.data-table tbody tr:hover {
  background: #f8fafc;
}

.table-user-photo {
  width: 32px;
  height: 40px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--border-color);
}

.result-placeholder-box {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.modal-header {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-body {
  padding: 1.25rem;
}

.modal-footer {
  background: #f8fafc;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}

/* Toasts */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2000;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast.success { border-left: 4px solid var(--success-green); color: var(--success-green); }
.toast.error { border-left: 4px solid var(--danger-red); color: var(--danger-red); }
.toast.info { border-left: 4px solid var(--primary-blue); color: var(--primary-blue); }

/* ==========================================================================
   ESTILOS DE SESIÓN ÚNICA NOTARIAL Y OPERADOR
   ========================================================================== */
.badge-operator {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.btn-icon.danger-hover:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fca5a5;
}

.session-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 39, 68, 0.95);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.session-dialog {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.session-header {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--primary-blue);
}

.session-header h2 {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  color: #ffffff;
}

.session-header p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.3rem;
  line-height: 1.4;
}

.session-body {
  padding: 1.5rem;
}

.session-footer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
}

.notary-seal-lg {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}

.notary-session-preview {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-top: 1rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ==========================================================================
   OPTIMIZACIÓN RESPONSIVA PROFESIONAL (Mobile, Tablet, Desktop)
   ========================================================================== */

@media (max-width: 1024px) {
  .app-main {
    padding: 1.25rem 1rem;
  }
  .grid-layout-2col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .header-container {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .app-header {
    padding: 0.75rem 1rem;
  }
  .header-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .header-brand {
    justify-content: flex-start;
  }
  .brand-text h1 {
    font-size: 1.05rem;
  }
  .header-metadata {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .meta-item {
    align-items: flex-start;
    font-size: 0.75rem;
  }
  .nav-container {
    padding: 0 0.5rem;
    gap: 0.25rem;
  }
  .nav-item {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .panel-card {
    padding: 1rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .camera-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .camera-controls .btn {
    flex: 1 1 calc(50% - 0.4rem);
    justify-content: center;
    font-size: 0.78rem;
    padding: 0.5rem;
  }
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-table {
    min-width: 620px;
    font-size: 0.78rem;
  }
  .modal-dialog,
  .session-dialog {
    max-width: 95vw;
    width: 95vw;
    margin: 0 auto;
    max-height: 92vh;
    overflow-y: auto;
  }
  .session-header {
    padding: 1.1rem 1rem;
  }
  .session-body {
    padding: 1rem;
  }
  .sticker-wrapper {
    padding: 0.35rem;
  }
  .notary-sticker {
    font-size: 10px;
    padding: 0.6rem;
  }
}

@media (max-width: 480px) {
  .header-metadata {
    flex-direction: column;
    align-items: stretch;
  }
  .metrics-row {
    grid-template-columns: 1fr;
  }
  .camera-controls .btn {
    flex: 1 1 100%;
  }
  .session-body button[type="button"].btn-sm {
    font-size: 0.72rem;
    padding: 0.35rem;
  }
  .card-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .card-header-flex .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   REGLAS DE IMPRESIÓN (@media print) PARA STICKER TÉRMICO
   ========================================================================== */
@media print {
  body * {
    visibility: hidden;
  }
  #printableNotarySticker,
  #printableNotarySticker * {
    visibility: visible;
  }
  #printableNotarySticker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: 1.5px solid #000;
    padding: 6px;
    box-shadow: none;
  }
  @page {
    size: auto;
    margin: 0;
  }
}
