/* =================================================================
   LENTERA PUBLIKA — KOMPONEN GLOBAL
================================================================= */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--lp-font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--lp-text-body);
  background: var(--lp-bg-app);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lp-font-sans);
  color: var(--lp-text-dark);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--sp-4);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

a {
  color: var(--lp-accent);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--lp-accent-hover); }

p { margin: 0 0 var(--sp-4); }

code, pre, .font-mono { font-family: var(--lp-font-mono); }

/* =========================================
   BUTTONS
========================================= */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.625rem 1.125rem;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.4;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  text-decoration: none;
  min-height: 42px;
}
.lp-btn:focus-visible {
  outline: 3px solid rgba(var(--lp-accent-rgb), 0.25);
  outline-offset: 2px;
}
.lp-btn i { font-size: 1.125rem; }

.lp-btn-primary {
  background: var(--lp-accent);
  color: var(--lp-white);
  box-shadow: var(--sh-sm);
}
.lp-btn-primary:hover:not(:disabled) {
  background: var(--lp-accent-hover);
  color: var(--lp-white);
  transform: translateY(-1px);
  box-shadow: var(--sh-cta);
}

.lp-btn-secondary {
  background: var(--lp-primary);
  color: var(--lp-white);
}
.lp-btn-secondary:hover:not(:disabled) {
  background: var(--lp-secondary);
  color: var(--lp-white);
  transform: translateY(-1px);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text-dark);
  border-color: var(--lp-border);
}
.lp-btn-outline:hover:not(:disabled) {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  background: rgba(var(--lp-accent-rgb), 0.04);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-body);
}
.lp-btn-ghost:hover:not(:disabled) {
  background: var(--lp-light-navy);
  color: var(--lp-primary);
}

.lp-btn-danger {
  background: var(--lp-danger);
  color: var(--lp-white);
}
.lp-btn-danger:hover:not(:disabled) {
  background: #dc2626;
  color: var(--lp-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(239, 68, 68, 0.45);
}

.lp-btn-success {
  background: var(--lp-success);
  color: var(--lp-white);
}
.lp-btn-success:hover:not(:disabled) {
  background: #059669;
  color: var(--lp-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(16, 185, 129, 0.45);
}

.lp-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: var(--fs-body-sm);
  min-height: 34px;
}
.lp-btn-sm i { font-size: 1rem; }

.lp-btn-lg {
  padding: 0.875rem 1.625rem;
  font-size: var(--fs-body-lg);
  min-height: 50px;
}

.lp-btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: var(--r-sm);
}

.lp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* =========================================
   FORM CONTROLS
========================================= */
.lp-form-group {
  margin-bottom: var(--sp-5);
}
.lp-form-group.is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
}
.lp-label {
  display: block;
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--lp-text-dark);
  margin-bottom: var(--sp-2);
}
.lp-label .req {
  color: var(--lp-danger);
  margin-left: 2px;
}
.lp-help {
  display: block;
  font-size: var(--fs-caption);
  color: var(--lp-text-muted);
  margin-top: var(--sp-2);
}

.lp-input,
.lp-select,
.lp-textarea {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--r-sm);
  background: var(--lp-white);
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--lp-text-dark);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.lp-input:focus,
.lp-select:focus,
.lp-textarea:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 4px rgba(var(--lp-accent-rgb), 0.12);
}
.lp-textarea {
  resize: vertical;
  min-height: 96px;
}
.lp-input::placeholder,
.lp-textarea::placeholder { color: var(--lp-text-soft); }

.lp-input.is-error,
.lp-select.is-error,
.lp-textarea.is-error {
  border-color: var(--lp-danger);
  background: #fff8f8;
}
.lp-error-msg {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  font-size: var(--fs-caption);
  color: var(--lp-danger);
}
.lp-error-msg i { font-size: 0.875rem; }

.lp-input-group {
  display: flex;
  align-items: stretch;
}
.lp-input-group .lp-input { border-radius: 0; }
.lp-input-group > :first-child { border-top-left-radius: var(--r-sm); border-bottom-left-radius: var(--r-sm); }
.lp-input-group > :last-child  { border-top-right-radius: var(--r-sm); border-bottom-right-radius: var(--r-sm); }
.lp-input-group .lp-input + .lp-btn { margin-left: -1.5px; }
.lp-input-group .input-prefix,
.lp-input-group .input-suffix {
  display: flex; align-items: center;
  padding: 0 0.875rem;
  background: var(--lp-bg-app);
  border: 1.5px solid var(--lp-border);
  color: var(--lp-text-muted);
  font-size: var(--fs-body-sm);
}

/* Checkbox & Radio refined */
.lp-check {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  font-size: var(--fs-body-sm);
  user-select: none;
}
.lp-check input { accent-color: var(--lp-accent); width: 18px; height: 18px; cursor: pointer; }

/* =========================================
   CARDS
========================================= */
.lp-card {
  background: var(--lp-white);
  border-radius: var(--r-md);
  border: 1px solid var(--lp-border-soft);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.lp-card-feature {
  border-left: 4px solid var(--lp-accent);
}
.lp-card-header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--lp-border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.lp-card-header h3 { margin: 0; font-size: var(--fs-h4); }
.lp-card-body  { padding: var(--sp-6); }
.lp-card-footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--lp-border-soft);
  background: var(--lp-bg-app);
  display: flex; justify-content: flex-end; gap: var(--sp-2);
}

/* =========================================
   STAT CARDS (Dashboard)
========================================= */
.stat-card {
  background: var(--lp-white);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-border-soft);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.stat-card .stat-icon {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-card .stat-label {
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}
.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-text-dark);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}
.stat-card .stat-meta {
  font-size: var(--fs-caption);
  color: var(--lp-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-card .stat-meta.up { color: var(--lp-success); }
.stat-card .stat-meta.down { color: var(--lp-danger); }
.stat-card.is-accent { border-bottom: 3px solid var(--lp-accent); }
.stat-card.is-success .stat-icon { background: var(--lp-success-soft); color: var(--lp-success); }
.stat-card.is-warning { border-bottom: 3px solid var(--lp-warning); }
.stat-card.is-warning .stat-icon { background: var(--lp-warning-soft); color: var(--lp-warning); }
.stat-card.is-danger  .stat-icon { background: var(--lp-danger-soft);  color: var(--lp-danger); }
.stat-card.is-accent  .stat-icon { background: rgba(var(--lp-accent-rgb), 0.12); color: var(--lp-accent); }
.stat-card.is-info    .stat-icon { background: var(--lp-info-soft); color: var(--lp-info); }
.stat-card.is-primary .stat-icon { background: var(--lp-light-navy); color: var(--lp-primary); }

/* =========================================
   BADGES
========================================= */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-caption);
  font-weight: 500;
  line-height: 1;
  height: 24px;
  white-space: nowrap;
}
.lp-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.lp-badge.is-pulse .dot {
  animation: lp-pulse 1.6s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50%      { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0); opacity: 0.6; }
}
.badge-pending   { background: var(--lp-warning-soft); color: #b45309; }
.badge-verified  { background: rgba(var(--lp-accent-rgb), 0.1); color: var(--lp-accent); }
.badge-rejected  { background: var(--lp-danger-soft); color: #b91c1c; }
.badge-suspended { background: #f1f5f9; color: #475569; }
.badge-success   { background: var(--lp-success-soft); color: #047857; }
.badge-info      { background: var(--lp-info-soft); color: #1d4ed8; }
.badge-warning   { background: var(--lp-warning-soft); color: #b45309; }
.badge-danger    { background: var(--lp-danger-soft); color: #b91c1c; }
.badge-default   { background: #f1f5f9; color: #475569; }

/* =========================================
   TABLES
========================================= */
.lp-table-wrap {
  background: var(--lp-white);
  border-radius: var(--r-md);
  border: 1px solid var(--lp-border-soft);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.lp-table-toolbar {
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  border-bottom: 1px solid var(--lp-border-soft);
  flex-wrap: wrap;
}
.lp-table-toolbar .toolbar-left {
  display: flex; gap: var(--sp-3); align-items: center; flex: 1; min-width: 0; flex-wrap: wrap;
}
.lp-table-toolbar .toolbar-right {
  display: flex; gap: var(--sp-2); align-items: center; flex-wrap: wrap;
}
.lp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body-sm);
}
.lp-table th {
  text-align: left;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 600;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  background: #FAFBFD;
  border-bottom: 1px solid var(--lp-border);
  white-space: nowrap;
}
.lp-table th.sortable { cursor: pointer; user-select: none; }
.lp-table th.sortable:hover { color: var(--lp-accent); }
.lp-table th .sort-icon { font-size: 0.875rem; opacity: 0.5; margin-left: 4px; }
.lp-table td {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--lp-border-soft);
  color: var(--lp-text-dark);
  vertical-align: middle;
}
.lp-table tbody tr {
  transition: background var(--t-fast);
}
.lp-table tbody tr:hover { background: var(--lp-row-hover); }
.lp-table tbody tr:last-child td { border-bottom: none; }
.lp-table .col-num { width: 1%; white-space: nowrap; color: var(--lp-text-muted); font-family: var(--lp-font-mono); }
.lp-table .col-actions { width: 1%; white-space: nowrap; }

/* Action button group inline table */
.lp-actions {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.lp-actions .lp-btn-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-xs);
}

/* =========================================
   PAGINATION
========================================= */
.lp-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-top: 1px solid var(--lp-border-soft);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.lp-pagination .pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.lp-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.625rem;
  border-radius: var(--r-xs);
  border: 1px solid var(--lp-border);
  color: var(--lp-text-dark);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--t-fast);
}
.lp-pagination .page-link:hover { border-color: var(--lp-accent); color: var(--lp-accent); }
.lp-pagination .page-item.active .page-link {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: var(--lp-white);
}
.lp-pagination .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}
.lp-pagination .pagination-info {
  font-size: var(--fs-body-sm);
  color: var(--lp-text-muted);
}

/* =========================================
   EMPTY STATE
========================================= */
.lp-empty {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
}
.lp-empty .empty-icon {
  width: 80px; height: 80px;
  border-radius: 8px;
  background: var(--lp-light-navy);
  color: var(--lp-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: var(--sp-4);
}
.lp-empty h4 {
  font-size: var(--fs-h4);
  color: var(--lp-text-dark);
  margin-bottom: var(--sp-2);
}
.lp-empty p {
  color: var(--lp-text-muted);
  max-width: 360px;
  margin: 0 auto var(--sp-5);
}

/* =========================================
   SKELETON LOADER
========================================= */
.skeleton {
  background: linear-gradient(90deg, #eef2f8 0%, #f7f9fc 50%, #eef2f8 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-xs);
  display: block;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================================
   TOAST
========================================= */
#lp-toast-container {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  pointer-events: none;
  max-width: calc(100vw - var(--sp-12));
}
.lp-toast {
  background: var(--lp-white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  min-width: 300px;
  max-width: 420px;
  border-left: 4px solid var(--lp-accent);
  pointer-events: auto;
  animation: toast-in 0.3s ease-out;
}
.lp-toast.is-success { border-left-color: var(--lp-success); }
.lp-toast.is-error,
.lp-toast.is-danger  { border-left-color: var(--lp-danger); }
.lp-toast.is-warning { border-left-color: var(--lp-warning); }
.lp-toast.is-info    { border-left-color: var(--lp-info); }
.lp-toast .toast-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-toast.is-success .toast-icon { color: var(--lp-success); }
.lp-toast.is-error .toast-icon,
.lp-toast.is-danger .toast-icon  { color: var(--lp-danger); }
.lp-toast.is-warning .toast-icon { color: var(--lp-warning); }
.lp-toast.is-info .toast-icon    { color: var(--lp-info); }
.lp-toast .toast-body { flex: 1; min-width: 0; }
.lp-toast .toast-title { font-weight: 600; color: var(--lp-text-dark); margin-bottom: 2px; font-size: var(--fs-body-sm); }
.lp-toast .toast-msg   { color: var(--lp-text-body); font-size: var(--fs-body-sm); line-height: 1.5; }
.lp-toast .toast-close {
  background: transparent; border: none; cursor: pointer;
  color: var(--lp-text-muted); padding: 4px; border-radius: var(--r-xs);
  transition: background var(--t-fast);
}
.lp-toast .toast-close:hover { background: var(--lp-bg-app); }

.lp-toast.is-leaving { animation: toast-out 0.25s forwards; }
@keyframes toast-in {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes toast-out {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

/* =========================================
   MODAL (custom over Bootstrap)
========================================= */
.lp-modal-confirm .modal-content {
  border-radius: var(--r-lg);
  border: none;
  box-shadow: var(--sh-xl);
}
.lp-modal-confirm .modal-body {
  padding: var(--sp-8) var(--sp-6) var(--sp-5);
  text-align: center;
}
.lp-modal-confirm .confirm-icon {
  width: 72px; height: 72px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--sp-4);
}
.lp-modal-confirm.is-danger  .confirm-icon { background: var(--lp-danger-soft); color: var(--lp-danger); }
.lp-modal-confirm.is-warning .confirm-icon { background: var(--lp-warning-soft); color: var(--lp-warning); }
.lp-modal-confirm.is-success .confirm-icon { background: var(--lp-success-soft); color: var(--lp-success); }
.lp-modal-confirm.is-info    .confirm-icon { background: var(--lp-info-soft); color: var(--lp-info); }
.lp-modal-confirm h4 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.lp-modal-confirm p  { color: var(--lp-text-muted); margin-bottom: 0; }
.lp-modal-confirm .modal-footer {
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  border: none;
  justify-content: center;
  gap: var(--sp-3);
}

/* =========================================
   ALERTS (page-level)
========================================= */
.lp-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  border-left: 4px solid;
  font-size: var(--fs-body-sm);
  margin-bottom: var(--sp-4);
}
.lp-alert i { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.lp-alert.is-success { background: var(--lp-success-soft); border-color: var(--lp-success); color: #065f46; }
.lp-alert.is-warning { background: var(--lp-warning-soft); border-color: var(--lp-warning); color: #92400e; }
.lp-alert.is-danger  { background: var(--lp-danger-soft);  border-color: var(--lp-danger);  color: #991b1b; }
.lp-alert.is-info    { background: var(--lp-info-soft);    border-color: var(--lp-info);    color: #1e40af; }

/* =========================================
   BREADCRUMB
========================================= */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-caption);
  color: var(--lp-text-muted);
  margin-bottom: var(--sp-3);
  flex-wrap: wrap;
}
.lp-breadcrumb a { color: var(--lp-text-muted); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--lp-accent); }
.lp-breadcrumb .sep { color: var(--lp-text-soft); }
.lp-breadcrumb .current { color: var(--lp-text-dark); font-weight: 500; }

/* =========================================
   PAGE HEADER
========================================= */
.lp-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.lp-page-header h1 {
  font-size: var(--fs-h1);
  margin: 0 0 var(--sp-2);
}
.lp-page-header .subtitle {
  color: var(--lp-text-muted);
  font-size: var(--fs-body);
  margin: 0;
}
.lp-page-header .page-actions {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
}

/* =========================================
   AVATAR
========================================= */
.lp-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lp-light-navy);
  color: var(--lp-primary);
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}
.lp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-avatar.size-sm { width: 32px; height: 32px; font-size: 0.875rem; }
.lp-avatar.size-md { width: 40px; height: 40px; font-size: 1rem; }
.lp-avatar.size-lg { width: 56px; height: 56px; font-size: 1.25rem; }
.lp-avatar.size-xl { width: 96px; height: 96px; font-size: 2rem; }

/* =========================================
   UTILITIES
========================================= */
.text-muted     { color: var(--lp-text-muted) !important; }
.text-dark      { color: var(--lp-text-dark) !important; }
.text-accent    { color: var(--lp-accent) !important; }
.text-success   { color: var(--lp-success) !important; }
.text-warning   { color: var(--lp-warning) !important; }
.text-danger    { color: var(--lp-danger) !important; }
.font-mono      { font-family: var(--lp-font-mono); }
.fw-500         { font-weight: 500; }
.fw-600         { font-weight: 600; }
.fw-700         { font-weight: 700; }
.fs-caption     { font-size: var(--fs-caption); }
.fs-body-sm     { font-size: var(--fs-body-sm); }

.bg-app   { background: var(--lp-bg-app); }
.bg-white { background: var(--lp-white); }

.rounded-md { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }

.divider {
  height: 1px;
  background: var(--lp-border-soft);
  margin: var(--sp-5) 0;
  border: none;
}

/* Cover thumbnail */
.cover-thumb {
  width: 44px; height: 60px;
  object-fit: cover;
  border-radius: var(--r-xs);
  background: var(--lp-light-navy);
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
}
.cover-thumb-md { width: 72px; height: 100px; border-radius: var(--r-sm); }

/* QR placeholder display */
.qr-frame {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  display: inline-block;
}

/* Print helpers */
@media print {
  body { background: #fff; }
  .no-print { display: none !important; }
}

/* Scrollbar refinement (webkit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 5px; border: 2px solid var(--lp-bg-app); }
::-webkit-scrollbar-thumb:hover { background: var(--lp-text-soft); }
