/* ── RUMASA — Components ──────────────────────────────────────── */

/* Icon Button (header actions) */
.icon-button {
  background: var(--primary);
  color: white;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .15s;
}

.icon-button:hover { background: var(--primary-dark); }

.icon-button.ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}

.icon-button.ghost:hover { background: var(--bg-dark); border-color: var(--primary); color: var(--primary); }

@keyframes spin { to { transform: rotate(360deg); } }
.spinning svg { animation: spin .8s linear infinite; }

.btn-spinner {
  display: inline-block;
  width: 13px; height: 13px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .65s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

/* Stat Cards */
.grid-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.stat-card {
  border-radius: var(--radius-lg);
  padding: 16px;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Gradient background per category */
.stat-card.organik   { background: linear-gradient(145deg, #15803d 0%, #16a34a 55%, #22c55e 100%); }
.stat-card.anorganik { background: linear-gradient(145deg, #0369a1 0%, #0284c7 55%, #0ea5e9 100%); }
.stat-card.b3        { background: linear-gradient(145deg, #b45309 0%, #d97706 55%, #f59e0b 100%); }
.stat-card.residu    { background: linear-gradient(145deg, #4b5563 0%, #6b7280 55%, #9ca3af 100%); }

/* Decorative circle in background */
.stat-card::before {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: -10px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.22);
  border-radius: 11px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

.stat-card .stat-icon svg { stroke: white !important; }

.stat-card span {
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 700;
  display: block;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: 22px;
  font-weight: 800;
  color: white;
  display: block;
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.compact-stats { margin-top: 12px; }
.compact-stats .stat-card { padding: 12px; border-radius: var(--radius); }
.compact-stats .stat-card strong { font-size: 17px; }
.compact-stats .stat-icon { width: 32px; height: 32px; margin-bottom: 8px; border-radius: 9px; }

/* Section Title */
.section-title {
  margin: 22px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.section-title h3, .section-title h2 { flex: 1; }

.section-title p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}

.action-card {
  background: var(--card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

/* Bubble accent per card */
.action-card::before {
  content: '';
  position: absolute;
  bottom: -22px; right: -22px;
  width: 72px; height: 72px;
  border-radius: 50%;
  opacity: .07;
}

.action-card:hover, .action-card:active {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Color per destination */
[data-go="page-register"] { border-color: #c6e8d9; }
[data-go="page-register"]::before { background: var(--organic); opacity:.09; }
[data-go="page-register"]:hover    { border-color: var(--organic); }

[data-go="page-scan"] { border-color: #bde5f8; }
[data-go="page-scan"]::before { background: var(--inorganic); opacity:.09; }
[data-go="page-scan"]:hover    { border-color: var(--inorganic); }

[data-go="page-input"] { border-color: #fde9b0; }
[data-go="page-input"]::before { background: var(--b3); opacity:.09; }
[data-go="page-input"]:hover    { border-color: var(--b3); }

[data-go="page-pickup"] { border-color: #ddd6fe; }
[data-go="page-pickup"]::before { background: #8b5cf6; opacity:.09; }
[data-go="page-pickup"]:hover    { border-color: #8b5cf6; }

.action-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
}

[data-go="page-register"] .action-icon { background: var(--organic-bg); color: var(--organic); }
[data-go="page-scan"]     .action-icon { background: var(--inorganic-bg); color: var(--inorganic); }
[data-go="page-input"]    .action-icon { background: var(--b3-bg); color: var(--b3); }
[data-go="page-pickup"]   .action-icon { background: #ede9fe; color: #7c3aed; }

.action-label {
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.25;
  position: relative; z-index: 1;
}

[data-go="page-register"] .action-label { color: var(--organic); }
[data-go="page-scan"]     .action-label { color: var(--inorganic); }
[data-go="page-input"]    .action-label { color: #b45309; }
[data-go="page-pickup"]   .action-label { color: #6d28d9; }

/* List & Item Cards */
.list { display: grid; gap: 10px; }

.latest-pickup-scroll,
.data-list-scroll {
  display: grid;
  gap: 10px;
}

.latest-pickup-pager,
.data-list-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
}

.latest-pickup-pager span,
.data-list-pager span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.latest-pickup-pager .small-btn,
.data-list-pager .small-btn {
  width: 100%;
  padding-inline: 8px;
}

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

.item-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px 16px 14px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow .15s, transform .15s;
}

.item-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 4px 0 0 4px;
}

.item-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.item-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--text); }
.item-card p  { color: var(--muted); font-size: 12.5px; line-height: 1.5; margin: 2px 0; overflow-wrap: anywhere; }
.item-h4      { margin-top: 6px; }

.item-id {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 10.5px;
  background: linear-gradient(135deg, var(--bg-dark), #d4eddf);
  color: var(--primary-dark);
  padding: 3px 9px;
  border-radius: 7px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 7px;
  border: 1px solid var(--border);
  letter-spacing: .02em;
}

.item-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; align-items: stretch; }

.small-btn {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: white;
  color: var(--text-secondary);
  transition: all .15s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  white-space: nowrap;
}

.small-btn:hover { background: var(--bg-dark); border-color: var(--primary); color: var(--primary-dark); }

.small-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(26,122,94,.28);
}
.small-btn.primary:hover { box-shadow: 0 5px 14px rgba(26,122,94,.38); transform: translateY(-1px); }

.small-btn.danger  {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: #fca5a5;
}
.small-btn.danger:hover { background: #fecaca; }

.compact-item { padding: 12px 14px 12px 18px; }
.compact-item::before { width: 3px; }

/* Item card top row (ID + favorite button) */
.item-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

/* Favorite button */
.fav-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  color: var(--muted);
  border-radius: 6px;
  display: grid; place-items: center;
  transition: color .15s, transform .2s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.fav-btn:hover { color: #f59e0b; transform: scale(1.2); }

.fav-btn--active {
  color: #f59e0b;
  animation: fav-pop .3s cubic-bezier(.34,1.56,.64,1);
}

@keyframes fav-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Empty State */
.empty-state {
  color: var(--muted);
  background: rgba(255,255,255,.8);
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.empty-state-icon { display: block; margin-bottom: 8px; }

/* Form Card */
.form-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

input, textarea, select, .search-input {
  width: 100%;
  margin-top: 6px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: var(--card-alt);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

input::placeholder, textarea::placeholder { color: var(--muted); font-weight: 400; }
textarea { min-height: 80px; resize: vertical; }

input:focus, textarea:focus, select:focus, .search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 122, 94, .12);
  background: white;
}

.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Buttons */
.primary-button, .secondary-button {
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(26, 122, 94, .3);
  margin-top: 4px;
}

.primary-button:hover  { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26, 122, 94, .38); }
.primary-button:active { transform: translateY(0); }

.secondary-button {
  background: var(--bg);
  color: var(--primary-dark);
  border: 1.5px solid var(--border);
  margin-top: 8px;
}

.secondary-button:hover { background: var(--bg-dark); border-color: var(--primary); }

.danger-btn { color: var(--danger); border-color: var(--danger-bg); }
.danger-btn:hover { background: var(--danger-bg); }

/* QR Card */
.qr-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 20px;
  margin-top: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.qr-card h3 { margin-bottom: 10px; }

.qr-box {
  display: grid;
  place-items: center;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  margin: 12px auto;
  width: fit-content;
  border: 1px solid var(--border-light);
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* Scanner Card */
.scanner-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

#reader {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f172a;
  margin-bottom: 12px;
  min-height: 60px;
}

/* Info Card */
.info-card {
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.info-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--primary-dark); }
.info-card p      { margin: 3px 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Portal Actions */
.portal-actions { display: grid; gap: 8px; margin: 12px 0; }
.portal-actions .secondary-button { margin-top: 0; }
.portal-panel { margin: 4px 0 16px; }

/* Tabs */
.tabs {
  display: flex;
  gap: 6px;
  margin: 14px 0;
  background: var(--bg-dark);
  padding: 4px;
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: 1 1 0;
  border: none;
  background: transparent;
  padding: 10px 6px;
  border-radius: 999px;
  color: var(--muted);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: max-content;
  white-space: nowrap;
}

.tab.active {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(26, 122, 94, .18);
}

/* Page hero variants */
.data-hero {
  background: linear-gradient(135deg, #0f4c38 0%, #145f49 50%, #1a7a5e 100%);
}

/* Search */
.search-wrap { position: relative; margin-bottom: 4px; }

.search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search-input {
  background: white;
  border-radius: 999px;
  padding-left: 42px;
  padding-right: 16px;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.search-input:focus { border-radius: 999px; }

/* Page Hero Banner */
.page-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 18px;
  padding: 18px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -24px; right: -24px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -18px; right: 40px;
  width: 64px; height: 64px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.page-hero-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 14px;
  display: grid; place-items: center;
  position: relative; z-index: 1;
}

.page-hero-title {
  color: white;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
  position: relative; z-index: 1;
}

/* Category Picker */
.cat-picker-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cat-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.cat-btn {
  border: 2px solid var(--border);
  background: var(--card-alt);
  border-radius: var(--radius);
  padding: 12px 4px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.cat-btn span {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: color .15s;
  position: relative; z-index: 1;
}

.cat-btn:hover { border-color: var(--border); background: white; transform: translateY(-2px); }

/* Active: full gradient background */
.cat-btn.active {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  border-color: transparent;
}

.cat-btn.active span { color: white; }

.cat-btn.active[data-cat="Organik"]   { background: linear-gradient(145deg, #15803d, #22c55e); }
.cat-btn.active[data-cat="Anorganik"] { background: linear-gradient(145deg, #0369a1, #0ea5e9); }
.cat-btn.active[data-cat="B3"]        { background: linear-gradient(145deg, #b45309, #f59e0b); }
.cat-btn.active[data-cat="Residu"]    { background: linear-gradient(145deg, #4b5563, #9ca3af); }

.cat-btn-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  transition: all .2s;
  position: relative; z-index: 1;
}

.cat-btn-icon.organik   { background: var(--organic-bg);   color: var(--organic); }
.cat-btn-icon.anorganik { background: var(--inorganic-bg); color: var(--inorganic); }
.cat-btn-icon.b3        { background: var(--b3-bg);        color: var(--b3); }
.cat-btn-icon.residu    { background: var(--residu-bg);    color: var(--residu); }

/* Active: icon goes white-on-transparent */
.cat-btn.active .cat-btn-icon {
  background: rgba(255,255,255,.22);
  color: white;
}

@media (max-width: 560px) {
  .item-actions .small-btn {
    flex: 1 1 calc(50% - 8px);
  }
}

/* Badges */
.cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

.cat-organik   { background: var(--organic-bg);   color: var(--organic); }
.cat-anorganik { background: var(--inorganic-bg); color: var(--inorganic); }
.cat-b3        { background: var(--b3-bg);        color: var(--b3); }
.cat-residu    { background: var(--residu-bg);    color: var(--residu); }

.badge-left { margin-left: 6px; }

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-dark);
  color: var(--primary-dark);
}

/* Settings */
.settings-group       { margin-bottom: 20px; }
.settings-group-title {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px; padding-left: 2px;
}

.settings-subsection-title {
  margin-top: 14px;
  margin-bottom: 8px;
}

.settings-info { font-size: 13px; margin-bottom: 12px; }

.settings-status { font-size: 12px; font-weight: 600; margin-top: 10px; color: var(--muted); min-height: 16px; }
.settings-status.ok    { color: var(--organic); }
.settings-status.error { color: var(--danger); }

.settings-hint { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }
.form-label    { display: flex; flex-direction: column; font-size: 13px; font-weight: 600; color: var(--text); gap: 4px; }
.form-label input { font-weight: 400; }

.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* Analytics */
.analytic-counts        { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.analytic-stat          { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 10px 8px; display: flex; align-items: center; gap: 8px; }
.analytic-icon          { font-size: 20px; line-height: 1; }
.analytic-label         { font-size: 10px; color: var(--muted); font-weight: 600; line-height: 1.2; }
.analytic-value         { font-size: 20px; font-weight: 800; color: var(--text); line-height: 1; }
.analytic-section-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 14px 0 6px; }
.analytic-total         { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: right; }
.table-scroll           { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.analytic-table         { width: 100%; border-collapse: collapse; font-size: 12px; }
.analytic-table th      { background: var(--surface); color: var(--muted); font-weight: 700; text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--border); }
.analytic-table td      { padding: 6px 8px; border-bottom: 1px solid var(--border); color: var(--text); }
.analytic-table tr:last-child td { border-bottom: none; }

.api-url-display {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px; font-weight: 600;
  color: var(--primary-dark);
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  word-break: break-all;
  line-height: 1.6;
}

.api-url-display.empty { color: var(--muted); font-family: inherit; font-style: italic; }

/* User management */
.user-info-card strong { font-size: 15px; color: var(--text); }
.user-info-card p      { font-size: 13px; color: var(--muted); margin: 3px 0; }

.user-row { display: flex; justify-content: space-between; align-items: flex-start; }

.role-badge {
  display: inline-block;
  padding: 2px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .03em; text-transform: capitalize;
}

.role-admin   { background: #ede9fe; color: #6d28d9; }
.role-superadmin { background: #ede9fe; color: #6d28d9; }
.role-admin_wilayah { background: #dbeafe; color: #1d4ed8; }
.role-petugas { background: var(--organic-bg); color: var(--organic); }
.role-viewer  { background: var(--residu-bg);  color: var(--residu); }

.form-section-title { font-size: 15px; margin-bottom: 14px; }

.kop-logo-preview-wrap {
  margin-bottom: 8px;
}

.kop-logo-reset-btn {
  margin-top: 6px;
}

.kop-submit-wrap {
  margin-top: 16px;
}
