/* ============================================================
   Booking System — style.css
   Aesthetic: Dark editorial / refined minimal
   Fonts: Playfair Display (headings) + Jost (body)
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:         #080C18;
  --surface:    #0F1523;
  --surface2:   #161D2E;
  --border:     #1E2840;
  --border2:    #2A3554;
  --text:       #EEF2FF;
  --muted:      #6B7A9E;
  --accent:     #F0A500;
  --accent-dim: #C47F00;
  --accent-glow:rgba(240,165,0,0.18);
  --success:    #22C55E;
  --error:      #EF4444;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 32px rgba(0,0,0,0.5);
  --transition: 200ms cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  padding: 56px 0 40px;
  text-align: center;
  position: relative;
}
.site-header::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 20px auto 0;
  border-radius: 2px;
}
.site-header h1 { color: var(--text); letter-spacing: -0.02em; }
.site-header p  { color: var(--muted); font-size: 1.05rem; margin-top: 10px; font-weight: 300; }

/* ── Card ──────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.card-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ── Calendar strip ────────────────────────────────────────── */
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-nav .month-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.btn-nav {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.btn-nav:hover { border-color: var(--accent); background: var(--accent-glow); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  background: transparent;
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  border-color: var(--accent);
  background: var(--accent-glow);
}
.cal-day.today { border-color: var(--border2); }
.cal-day.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}
.cal-day.disabled { color: var(--border2); cursor: default; }
.cal-day.empty { visibility: hidden; cursor: default; }
.cal-day.has-slots::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}
.cal-day { position: relative; }

/* ── Slot grid ─────────────────────────────────────────────── */
#slots-section { animation: fadeIn 0.25s ease; }

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.slot-btn {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.slot-btn:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.slot-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
}
.slot-btn.pending-hold {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
  position: relative;
  animation: pulseHold 1s ease-in-out infinite;
}
@keyframes pulseHold {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

.no-slots {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 8px 0;
}

/* ── Booking form ──────────────────────────────────────────── */
#form-section {
  display: none;
  animation: slideUp 0.3s ease;
}
#form-section.visible { display: block; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
label .required { color: var(--accent); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
input.error, textarea.error { border-color: var(--error); }
textarea { resize: vertical; min-height: 80px; }
::placeholder { color: var(--border2); }

.selected-slot-info {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}
.selected-slot-info strong { color: var(--text); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.3);
}
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border2); color: var(--text); }

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ── Spinner ───────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid var(--border2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.loading-slots {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 0;
}

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
}
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
}

/* ── Confirmation screen ───────────────────────────────────── */
#confirmation {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.4s ease;
}
#confirmation.visible { display: block; }
.confirmation-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
#confirmation h2 { color: var(--success); margin-bottom: 10px; }
#confirmation p { color: var(--muted); max-width: 380px; margin: 0 auto; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 40px 0 28px;
  color: var(--border2);
  font-size: 0.78rem;
}

/* ── Admin panel ───────────────────────────────────────────── */
.admin-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
}
.admin-header-inner h1 {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.admin-nav { display: flex; gap: 4px; }
.admin-nav button {
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.admin-nav button:hover   { color: var(--text); background: var(--surface2); }
.admin-nav button.active  { color: var(--accent); background: var(--accent-glow); }

.admin-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}
.admin-section { display: none; }
.admin-section.active { display: block; }

/* ── Bookings table ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
thead th {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tbody tr:hover td { background: rgba(22,29,46,0.8); transition: background 120ms; }
tbody tr:last-child td { border-bottom: none; }

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-confirmed { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-cancelled { background: rgba(239,68,68,0.1);  color: var(--error); }

.btn-cancel {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  padding: 5px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cancel:hover {
  border-color: var(--error);
  color: var(--error);
  background: rgba(239,68,68,0.08);
}

/* ── Settings form ─────────────────────────────────────────── */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
@media (max-width: 640px) { .settings-grid { grid-template-columns: 1fr; } }

.settings-grid .full { grid-column: 1 / -1; }

.days-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.day-check {
  display: none;
}
.day-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--muted);
}
.day-check:checked + .day-label {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
}

input[type="number"],
input[type="date"] {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  color-scheme: dark;
}
input[type="number"]:focus,
input[type="date"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  width: 100%;
  cursor: pointer;
}
select:focus { border-color: var(--accent); }

/* ── Admin login ───────────────────────────────────────────── */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow);
}
.login-card h2 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}
.login-card .subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Mobile ────────────────────────────────────────────────── */

/* ── Period tabs (Danas/Nedelja/Mesec) ─────────────────────────────────── */
.period-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.period-tab {
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.period-tab:hover { color: var(--text); background: var(--surface2); }
.period-tab.active {
  color: var(--accent);
  background: var(--accent-glow);
  border-color: rgba(240,165,0,0.25);
}
.period-tabs-spacer { flex: 1; }
.period-count {
  font-size: 0.76rem;
  color: var(--muted);
  margin-right: 6px;
}
.btn-icon {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.btn-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Section header (admin) ────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.section-header h2 { margin: 0; }

/* ── Nav badge (npr. broj pending) ─────────────────────────────────────── */
.nav-badge {
  display: inline-block;
  background: var(--error);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 1px 7px;
  min-width: 18px;
  text-align: center;
  margin-left: 4px;
}

/* ── Mobile menu toggle ─────────────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.2s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile breakpoints ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .admin-header-inner { padding: 0 16px; height: 56px; }
  .admin-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .admin-nav.open { display: flex; }
  .admin-nav button {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.92rem;
  }
  .mobile-menu-btn { display: flex; }
  .admin-header-inner h1 { font-size: 0.95rem; }
  #btn-logout { font-size: 0.78rem !important; padding: 6px 10px !important; }
}

/* ── Bookings: mobile cards vs desktop table ──────────────────────────────── */
.bookings-mobile-cards .mobile-cards-container { display: none; }

@media (max-width: 600px) {
  .admin-main { padding: 16px 12px; }
  .section-header h2 { font-size: 1.2rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 14px 10px; }
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.65rem; }
  .card { padding: 14px; border-radius: 10px; }
  .card-title { font-size: 0.74rem; }
  table { font-size: 0.78rem; }
  th, td { padding: 8px 6px !important; }
  .period-tabs { padding: 10px 12px; gap: 2px; }
  .period-tab { padding: 6px 12px; font-size: 0.8rem; }
  .btn { padding: 11px 18px; font-size: 0.86rem; }
  input, textarea, select { font-size: 16px !important; }

  /* Bookings tabela → kartice na mobile (skroz preko 600px) */
  .bookings-mobile-cards .table-wrap { display: none; }
  .bookings-mobile-cards .mobile-cards-container { display: block; }
  .bookings-mobile-cards table { display: none; }
  .bookings-mobile-cards .mobile-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
  }
  .bookings-mobile-cards .mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
  }
  .bookings-mobile-cards .mobile-card-time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }
  .bookings-mobile-cards .mobile-card-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.85rem;
  }
  .bookings-mobile-cards .mobile-card-row .lbl {
    color: var(--muted);
    font-size: 0.78rem;
  }
  .bookings-mobile-cards .mobile-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  .bookings-mobile-cards .mobile-card-actions button {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .card { padding: 14px; }
  .site-header { padding: 36px 0 28px; }
  .btn { padding: 11px 20px; }
}

/* ── Print stilovi ──────────────────────────────────────────────────────── */
@page { size: A4 portrait; margin: 14mm 12mm; }

@media print {
  /* ─ Sakrij UI hrom ─ */
  .admin-header, .period-tabs, .section-header, .btn, .btn-icon,
  .stat-grid, footer, .no-print, #loyalty-stats { display: none !important; }

  /* ─ Osnova ─ */
  body { background: #fff !important; color: #000 !important;
         font-family: 'Jost', sans-serif !important; font-size: 10pt !important; }
  .admin-main { padding: 0 !important; max-width: 100% !important; }
  .card { border: none !important; background: transparent !important;
          padding: 0 !important; box-shadow: none !important; margin: 0 !important; }

  /* ─ Fiksaj duplikat: prikaži tabelu, sakrij kartice ─ */
  .bookings-mobile-cards .table-wrap  { display: block !important; }
  .bookings-mobile-cards .mobile-cards-container { display: none !important; }

  /* ─ Tabela — čisti A4 stil ─ */
  table { font-size: 8.5pt !important; border-collapse: collapse !important; width: 100% !important; }
  thead th {
    background: #f0f0f0 !important; color: #000 !important;
    border-top: 1pt solid #888 !important; border-bottom: 1.5pt solid #333 !important;
    padding: 5pt 7pt !important; font-size: 7.5pt !important;
    text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
  }
  tbody td {
    border-bottom: 0.4pt solid #ddd !important; color: #000 !important;
    padding: 4pt 7pt !important; vertical-align: top;
  }
  tbody tr:last-child td { border-bottom: 1pt solid #888 !important; }

  /* ─ Sakrij kolonu "Akcija" (uvek poslednja) za booking tabele ─ */
  #tab-pending   th:last-child, #tab-pending   td:last-child,
  #tab-upcoming  th:last-child, #tab-upcoming  td:last-child,
  #tab-completed th:last-child, #tab-completed td:last-child,
  #tab-cancelled th:last-child, #tab-cancelled td:last-child,
  #tab-loyalty   th:last-child, #tab-loyalty   td:last-child { display: none !important; }

  /* ─ Bedževi: neutralni ─ */
  .badge {
    background: transparent !important; border: 0.4pt solid #666 !important;
    color: #000 !important; padding: 1pt 4pt !important; font-size: 7pt !important;
  }
  a { color: #000 !important; text-decoration: none !important; }

  /* ─ Print header (injektovan od printTab) ─ */
  .print-only  { display: block !important; }
  .print-title { font-size: 13pt !important; font-weight: 700; color: #000;
                 margin-bottom: 2pt; font-family: sans-serif; }
  .print-meta  { font-size: 8pt; color: #555; margin-bottom: 8pt;
                 padding-bottom: 5pt; border-bottom: 0.5pt solid #ccc; }
}
.print-only { display: none; }

