/* ============================================================
   POS Konter — Sistem Lisensi
   Design: Clean, minimal, professional
   Font: Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:        #2563eb;
  --primary-hover:  #1d4ed8;
  --primary-subtle: #eff6ff;

  --success:        #16a34a;
  --success-subtle: #f0fdf4;
  --warning:        #ca8a04;
  --warning-subtle: #fefce8;
  --danger:         #dc2626;
  --danger-subtle:  #fef2f2;
  --info:           #0284c7;
  --info-subtle:    #f0f9ff;

  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --gray-900:  #111827;

  --text:       #111827;
  --text-sub:   #6b7280;
  --text-muted: #9ca3af;
  --border:     #e5e7eb;
  --bg:         #f9fafb;
  --surface:    #ffffff;

  --sidebar-w:  220px;
  --radius-sm:  5px;
  --radius:     8px;
  --radius-lg:  12px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; color: var(--gray-900); }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.05rem; }
code {
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: .85em;
  background: var(--gray-100);
  padding: .1em .35em;
  border-radius: 3px;
  color: var(--gray-700);
}

/* ── Public Layout ─────────────────────────────────────────── */
.public-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: .875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.public-header .logo-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.public-header h1 { font-size: 1rem; font-weight: 600; color: var(--gray-900); }
.public-header p  { font-size: .78rem; color: var(--text-sub); }

.public-main {
  flex: 1;
  padding: 2rem 1rem 3rem;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.public-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Hero section (halaman order) */
.hero-section {
  background: var(--gray-900);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.hero-section h1 { color: #fff; font-size: 1.25rem; margin-bottom: .25rem; }
.hero-section p  { font-size: .85rem; color: rgba(255,255,255,.65); }
.feature-chips   { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .875rem; }
.chip {
  font-size: .72rem;
  font-weight: 500;
  padding: .2rem .6rem;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
}
.card-icon {
  width: 32px; height: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--gray-500);
  flex-shrink: 0;
}
.card-title    { font-size: .9rem; font-weight: 600; color: var(--gray-900); }
.card-subtitle { font-size: .78rem; color: var(--text-sub); margin-top: .1rem; }
.card-body     { padding: 1.25rem; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group   { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .35rem;
}
.required { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: .55rem .85rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  line-height: 1.5;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }

.form-hint {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .3rem;
  line-height: 1.4;
}
.form-error {
  font-size: .75rem;
  color: var(--danger);
  margin-top: .3rem;
}

/* Paket Radio Grid */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.paket-option { position: relative; }
.paket-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.paket-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .875rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: center;
  background: #fff;
  gap: .2rem;
}
.paket-label:hover { border-color: var(--gray-400); background: var(--gray-50); }
.paket-option input:checked + .paket-label {
  border-color: var(--primary);
  background: var(--primary-subtle);
}
.paket-name  { font-weight: 600; font-size: .82rem; color: var(--gray-900); }
.paket-harga { font-size: .82rem; color: var(--primary); font-weight: 600; }
.paket-badge {
  font-size: .65rem;
  font-weight: 600;
  background: var(--gray-900);
  color: #fff;
  padding: .1rem .45rem;
  border-radius: 3px;
  margin-top: .15rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  font-family: var(--font);
  font-size: .825rem;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { opacity: .85; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }

.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #15803d; border-color: #15803d; color: #fff; }

.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; color: #fff; }

.btn-warning { background: var(--warning); color: #fff; border-color: var(--warning); }
.btn-warning:hover { background: #a16207; border-color: #a16207; color: #fff; }

.btn-info { background: var(--info); color: #fff; border-color: var(--info); }
.btn-info:hover { background: #0369a1; border-color: #0369a1; color: #fff; }

.btn-secondary {
  background: var(--surface);
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-secondary:hover { background: var(--gray-50); color: var(--gray-900); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-subtle); color: var(--primary); }

.btn-ghost {
  background: transparent;
  color: var(--gray-500);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-700); }

.btn-sm { padding: .35rem .75rem; font-size: .775rem; }
.btn-lg { padding: .7rem 1.5rem; font-size: .925rem; font-weight: 600; }
.btn-full { width: 100%; }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-size: .825rem;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  line-height: 1.5;
  border: 1px solid transparent;
}
.alert-success { background: var(--success-subtle); color: #14532d; border-color: #bbf7d0; }
.alert-danger  { background: var(--danger-subtle);  color: #7f1d1d; border-color: #fecaca; }
.alert-warning { background: var(--warning-subtle); color: #713f12; border-color: #fde68a; }
.alert-info    { background: var(--info-subtle);    color: #0c4a6e; border-color: #bae6fd; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.badge-success   { background: var(--success-subtle); color: #15803d; }
.badge-danger    { background: var(--danger-subtle);  color: #b91c1c; }
.badge-warning   { background: var(--warning-subtle); color: #a16207; }
.badge-info      { background: var(--info-subtle);    color: #0369a1; }
.badge-secondary { background: var(--gray-100);       color: var(--gray-600, #4b5563); }
.badge-neutral   { background: var(--gray-900); color: #fff; }

/* ── Table ─────────────────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
thead th {
  padding: .6rem 1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: var(--gray-50);
}
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }
tbody td {
  padding: .7rem 1rem;
  color: var(--text);
  vertical-align: middle;
}
.td-actions { display: flex; align-items: center; gap: .35rem; flex-wrap: wrap; }

/* ── Admin Layout ──────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w);
  background: var(--gray-900);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 200;
  transition: transform .25s ease;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 1rem .875rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.brand-icon {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.sidebar-brand-name { font-size: .875rem; font-weight: 600; color: #fff; }
.sidebar-brand-sub  { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: .05rem; }

.sidebar-nav { padding: .75rem 0; flex: 1; }
.nav-section { padding: 0 .75rem .5rem; }
.nav-section-title {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  padding: .5rem .25rem .2rem;
}
.nav-item { margin-bottom: 1px; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .475rem .75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.6);
  font-size: .825rem;
  font-weight: 400;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-link:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.9); text-decoration: none; }
.nav-link.active { background: var(--primary); color: #fff; }
.nav-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: .75;
  display: flex; align-items: center; justify-content: center;
}
.nav-icon svg { width: 16px; height: 16px; stroke-width: 1.75; }
.nav-link.active .nav-icon { opacity: 1; }

.sidebar-footer {
  padding: .875rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Admin Main */
.admin-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-title   { font-size: .9rem; font-weight: 600; color: var(--gray-900); }
.topbar-actions { display: flex; align-items: center; gap: .75rem; }

.admin-content { padding: 1.5rem; flex: 1; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gray-700);
  cursor: pointer;
  padding: .25rem;
  font-size: 1.1rem;
  margin-right: .5rem;
}

/* ── Stats Grid ────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.stat-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-icon-primary { background: var(--primary-subtle);  color: var(--primary); }
.stat-icon-success { background: var(--success-subtle);  color: var(--success); }
.stat-icon-warning { background: var(--warning-subtle);  color: var(--warning); }
.stat-icon-danger  { background: var(--danger-subtle);   color: var(--danger); }
.stat-icon-info    { background: var(--info-subtle);     color: var(--info); }
.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.1;
  white-space: nowrap;
}
.stat-label { font-size: .75rem; color: var(--text-sub); margin-top: .15rem; }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: fadeInUp .2s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title { font-size: .9rem; font-weight: 600; }
.modal-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: .2rem;
  border-radius: 4px;
  line-height: 1;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-700); }
.modal-body   { padding: 1.25rem; }
.modal-footer {
  padding: .875rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
}

/* ── Info Table ────────────────────────────────────────────── */
.info-table { width: 100%; }
.info-table tr td:first-child {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-sub);
  white-space: nowrap;
  padding: .45rem .5rem .45rem 0;
  width: 38%;
  vertical-align: top;
}
.info-table tr td:last-child {
  font-size: .825rem;
  color: var(--text);
  padding: .45rem 0;
  word-break: break-all;
}
.info-table tr { border-bottom: 1px solid var(--gray-100); }
.info-table tr:last-child { border-bottom: none; }

/* ── Filter Bar ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1.1rem;
}
.filter-bar .form-control { max-width: 180px; }
.filter-bar input[type="date"] { max-width: 150px; }

/* ── Login Page ────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  padding: 1.5rem;
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow);
}
.login-logo { text-align: center; margin-bottom: 1.75rem; }
.logo-circle {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
  font-size: 1.3rem;
}
.login-logo h2 { font-size: 1.1rem; color: var(--gray-900); }
.login-logo p  { color: var(--text-sub); font-size: .8rem; margin-top: .25rem; }

/* ── Konfirmasi Page ───────────────────────────────────────── */
.konfirmasi-header {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.check-icon {
  width: 56px; height: 56px;
  background: var(--success-subtle);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
  font-size: 1.5rem;
  color: var(--success);
  border: 2px solid #bbf7d0;
}
.referral-box {
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
.referral-code {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .12em;
  background: rgba(255,255,255,.12);
  padding: .4rem 1rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: .4rem;
  font-family: 'Menlo', 'Consolas', monospace;
}

/* ── Cek Status ────────────────────────────────────────────── */
.status-card {
  border-left: 3px solid var(--border);
  padding: .875rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left-width: 3px;
  margin-bottom: 1rem;
}
.status-card.active   { border-left-color: var(--success); }
.status-card.expired  { border-left-color: var(--danger); }
.status-card.inactive { border-left-color: var(--warning); }

/* ── Utilities ─────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-sm      { font-size: .825rem; }
.text-xs      { font-size: .75rem; }
.text-muted   { color: var(--text-sub); }
.font-bold    { font-weight: 600; }
.font-mono    { font-family: 'Menlo', 'Consolas', monospace; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 150px;
  display: inline-block;
}

/* ── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: 1rem 0;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 .5rem;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-sub);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .15s;
  background: var(--surface);
}
.page-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Overlay (mobile) ──────────────────────────────────────── */
.overlay-bg {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
}
.overlay-bg.show { display: block; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow); }
  .admin-main { margin-left: 0; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .paket-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar .form-control { max-width: 100%; }
  .admin-content { padding: 1rem; }
  .admin-topbar { padding: .75rem 1rem; }
  table { font-size: .78rem; }
  tbody td, thead th { padding: .55rem .75rem; }
  .public-main { padding: 1.25rem .875rem 2.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .paket-grid { grid-template-columns: 1fr 1fr; }
  .modal { max-height: 95vh; }
}
