/* MasteranKu — mobile-first, green-nature + sky gradient theme */
:root {
  --green: #2daa5e;
  --green-dark: #1f8a4a;
  --teal: #1b9aaa;
  --teal-dark: #13798a;
  --blue: #1e6fff;
  --yellow: #fbbf24;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: rgba(255, 255, 255, 0.9);
  --danger: #dc2626;
  --radius: 16px;
  --shadow: 0 4px 18px rgba(16, 60, 40, 0.12);
  --player-h: 68px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f9ff 30%, #fff8f0 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Animated clouds ---------- */
.cloud-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: float linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.cloud-1 { width: 200px; height: 60px; top: 8%; left: -10%; animation-duration: 25s; }
.cloud-1::before { width: 100px; height: 100px; top: -40px; left: 20px; }
.cloud-1::after { width: 120px; height: 80px; top: -30px; left: 60px; }
.cloud-2 { width: 250px; height: 70px; top: 15%; left: 30%; animation-duration: 35s; }
.cloud-3 { width: 180px; height: 50px; top: 5%; left: 60%; animation-duration: 30s; }

@keyframes float {
  0% { transform: translateX(0); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0); }
}

/* ---------- Layout ---------- */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 18px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-green {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
}

.btn-green:hover {
  box-shadow: 0 6px 16px rgba(45, 170, 94, 0.4);
}

.btn-yellow {
  background: var(--yellow);
  color: #1f2937;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--line);
  color: var(--ink);
}

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

.btn-sm { min-height: 40px; padding: 6px 14px; font-size: 0.85rem; }
.btn-lg { min-height: 52px; padding: 14px 26px; font-size: 1.05rem; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #e8f4fd 0%, #d4edda 55%, #fff8f0 100%);
  border-radius: 24px;
  padding: 32px 20px;
  margin: 20px 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-text { flex: 1; min-width: 0; }

.hero h1 {
  margin: 0 0 6px;
  font-size: 1.9rem;
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

.hero-tagline {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-bird {
  font-size: 4.2rem;
  line-height: 1;
  filter: drop-shadow(0 8px 12px rgba(27, 154, 170, 0.35));
}

/* ---------- Sections ---------- */
section h2 {
  font-size: 1.3rem;
  margin: 28px 0 14px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 20px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Chips ---------- */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.chip:hover {
  border-color: var(--green);
  box-shadow: 0 3px 10px rgba(45, 170, 94, 0.2);
}

.chip.active {
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-color: transparent;
  color: #fff;
}

/* ---------- Card grid (masteran) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

.masteran-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-top {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.card-meta {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-fn {
  background: #e0f2fe;
  color: #0369a1;
}

.badge-premium {
  background: #fef3c7;
  color: #92400e;
}

.badge-admin {
  background: #fee2e2;
  color: #991b1b;
}

.badge-published {
  background: #dcfce7;
  color: #166534;
}

.badge-draft {
  background: #f3f4f6;
  color: #4b5563;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 20px;
  padding: 24px 20px;
  color: #fff;
  margin: 28px 0;
  box-shadow: var(--shadow);
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.cta-banner p {
  margin: 4px 0 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 32px;
  background: linear-gradient(135deg, #14532d, #1b9aaa);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.footer-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 6px 0 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.7;
  margin: 0;
}

/* ---------- Auth pages ---------- */
.auth-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.auth-brand {
  color: var(--green-dark);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 28px 22px;
}

.auth-card h1 {
  margin: 0 0 4px;
  font-size: 1.5rem;
}

.auth-sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-switch {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-switch a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Forms ---------- */
.field {
  display: block;
  position: relative;
  margin-bottom: 14px;
}

.field > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field input[type="search"],
.field input[type="file"],
.field select,
.search-input,
.select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus,
.search-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 170, 94, 0.18);
}

.toggle-pw {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 8px;
}

.toggle-pw:active { background: #f3f4f6; }

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

/* ---------- App shell ---------- */
.app-header {
  background: linear-gradient(135deg, var(--teal), var(--green));
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 10px;
}

.app-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-main {
  padding-bottom: calc(var(--player-h) + 28px + env(safe-area-inset-bottom));
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tab {
  flex: 1;
  min-height: 44px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
}

.tab.active {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 3px 10px rgba(45, 170, 94, 0.3);
}

.tab-panel[hidden] { display: none; }

/* ---------- Toolbar / filters ---------- */
.toolbar {
  margin-bottom: 14px;
}

.search-input {
  margin-bottom: 10px;
}

.filter-row {
  display: flex;
  gap: 10px;
}

.filter-row .select { flex: 1; min-width: 0; }

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 40px 16px;
  font-size: 0.95rem;
}

/* ---------- Bird cards ---------- */
.bird-form {
  padding: 18px;
  margin-bottom: 16px;
}

.bird-form h3 { margin: 0 0 12px; font-size: 1.05rem; }

.bird-form-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.bird-form-row .field {
  flex: 1;
  min-width: 140px;
  margin-bottom: 0;
}

.bird-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bird-card {
  padding: 18px;
}

.bird-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.bird-card-name {
  font-weight: 800;
  font-size: 1.1rem;
}

.bird-card-species {
  color: var(--muted);
  font-size: 0.85rem;
}

.bird-card-actions {
  display: flex;
  gap: 8px;
}

.bird-masteran-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bird-masteran-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(240, 249, 255, 0.7);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 12px;
}

.bird-masteran-item .bm-title {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bm-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.icon-btn {
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.icon-btn:active { background: rgba(0, 0, 0, 0.06); }

.icon-btn.remove:hover { background: #fef2f2; }

/* ---------- Masteran cards (catalog) ---------- */
.masteran-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.masteran-actions .btn { flex: 1; }

.btn-play {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
}

.btn-assign {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Assign sheet ---------- */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sheet {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  animation: slide-up 0.2s ease;
}

@keyframes slide-up {
  from { transform: translateY(40px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

.sheet h3 { margin: 0 0 12px; font-size: 1.05rem; }

.sheet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 50vh;
  overflow-y: auto;
}

.sheet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  min-height: 48px;
}

.sheet-item:active { border-color: var(--green); background: #f0fdf4; }

.sheet-empty {
  color: var(--muted);
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

/* ---------- Player bar ---------- */
.player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 12px;
  align-items: center;
  min-height: calc(var(--player-h) + env(safe-area-inset-bottom));
}

.player-info {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.player-title {
  font-weight: 700;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.player-time {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 2px;
}

.player-btn {
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.player-btn:active { background: rgba(0, 0, 0, 0.06); }

.player-btn.active {
  background: #e0f2fe;
}

.player-play {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.player-play:active { transform: scale(0.95); }

.seek {
  grid-column: 1 / -1;
  width: 100%;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(90deg, var(--green) var(--seek, 0%), #e5e7eb var(--seek, 0%));
  border-radius: 999px;
  cursor: pointer;
  min-height: 24px;
}

.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .player-bar {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 420px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  }
}

/* ---------- Admin ---------- */
.admin-main h1 {
  font-size: 1.4rem;
  margin: 18px 0 0;
}

.inline-form {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.inline-form .field { flex: 1; min-width: 200px; margin-bottom: 0; }
.inline-form .grow { flex: 1; }

.table-wrap {
  overflow-x: auto;
  padding: 6px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 520px;
}

.table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--line);
}

.table td {
  padding: 12px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.table tr:last-child td { border-bottom: none; }

.table-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.table-actions .btn {
  min-height: 40px;
  padding: 6px 12px;
  font-size: 0.82rem;
}

.masteran-toolbar {
  margin-bottom: 14px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal[hidden] { display: none; }

.modal-card {
  width: 100%;
  max-width: 520px;
  padding: 22px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-head h3 { margin: 0; font-size: 1.15rem; }

.modal-close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 10px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}

.modal-actions .btn { min-width: 110px; }

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-row .field { flex: 1; min-width: 150px; }

.check-row {
  gap: 20px;
  margin-bottom: 14px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 44px;
}

.check input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.hint {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: #111827;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: calc(100vw - 32px);
  text-align: center;
}

.toast.error { background: var(--danger); }
.toast.success { background: var(--green-dark); }

/* ---------- Misc ---------- */
.hidden { display: none !important; }

/* ---------- Admin: Akses (magic links) ---------- */
.access-info { background: linear-gradient(135deg, rgba(255, 200, 87, 0.12), rgba(255, 255, 255, 0.6)); border: 1px solid rgba(255, 170, 0, 0.25); }
.access-link { display: inline-block; max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: middle; font-size: 0.82rem; }
.muted { color: var(--muted, #6b7280); font-weight: 400; font-size: 0.85rem; }
