:root {
  --gz-gold: #F5A623;
  --gz-gold-light: #FBBF24;
  --gz-green: #4CAF50;
  --gz-green-dark: #2E7D32;
  --gz-green-darker: #1B5E20;
  --gz-green-light: #8BC34A;
  --gz-black: #1A1A1A;
  --gz-gray-600: #6B7280;
  --gz-gray-300: #E5E7EB;
  --gz-gray-100: #F9FAFB;
  --gz-bg: #FBFBFB;
  --gz-radius: 14px;
  --gz-radius-lg: 20px;
  --gz-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--gz-bg);
  color: var(--gz-black);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gz-green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.gz-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  min-height: 100vh;
}

/* ---------- Logo ---------- */
.gz-logo-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 8px;
  display: block;
}
.gz-brand {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}
.gz-brand .grow { color: var(--gz-black); }
.gz-brand .zio { color: var(--gz-green); }
.gz-tagline {
  text-align: center;
  color: var(--gz-gray-600);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 6px 0 32px;
}

/* ---------- Headings ---------- */
.gz-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.gz-title .accent { color: var(--gz-green); }
.gz-subtitle {
  color: var(--gz-gray-600);
  margin: 0 0 28px;
  font-size: 0.95rem;
}

/* ---------- Form fields ---------- */
.gz-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gz-gray-300);
  border-radius: var(--gz-radius);
  padding: 14px 16px;
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.15s ease;
}
.gz-field:focus-within { border-color: var(--gz-green); }
.gz-field svg { flex-shrink: 0; color: var(--gz-gray-600); }
.gz-field input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.98rem;
  background: transparent;
  color: var(--gz-black);
  min-width: 0;
}
.gz-field input::placeholder { color: #A1A7B3; }
.gz-field-toggle { cursor: pointer; background: none; border: none; padding: 0; color: var(--gz-gray-600); }

.gz-check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gz-gray-600);
  margin: 6px 0 22px;
}
.gz-check-row input { margin-top: 3px; }
.gz-check-row a { color: var(--gz-green-dark); font-weight: 600; }

.gz-forgot {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  font-weight: 600;
  margin: -4px 0 22px;
}

/* ---------- Buttons ---------- */
.gz-btn-loading {
  opacity: 0.6;
  cursor: not-allowed;
}
.gz-btn {
  width: 100%;
  border: none;
  border-radius: var(--gz-radius);
  padding: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--gz-green-light), var(--gz-green-dark));
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.gz-btn:hover { opacity: 0.93; }
.gz-btn:active { transform: scale(0.99); }
.gz-btn-outline {
  background: #fff;
  color: var(--gz-black);
  border: 1.5px solid var(--gz-gray-300);
  font-weight: 600;
}

.gz-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gz-gray-600);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 24px 0;
}
.gz-divider::before, .gz-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gz-gray-300);
}

.gz-social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.gz-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--gz-gray-300);
  border-radius: var(--gz-radius);
  padding: 12px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.gz-footer-link {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gz-gray-600);
}
.gz-footer-link a { font-weight: 700; }

.gz-alert {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: var(--gz-radius);
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.gz-alert-success {
  background: #F0FDF4;
  border-color: #86EFAC;
  color: #166534;
}

.gz-back-arrow {
  color: var(--gz-black);
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

/* ---------- Dashboard ---------- */
.gz-app { max-width: 480px; margin: 0 auto; min-height: 100vh; background: #fff; padding-bottom: 84px; }
.gz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 8px;
}
.gz-topbar-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.2rem; }
.gz-topbar-brand img { width: 30px; height: 30px; }
.gz-topbar-icons { display: flex; align-items: center; gap: 14px; }
.gz-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gz-green); object-fit: cover; }

.gz-greeting { padding: 6px 20px 16px; }
.gz-greeting h2 { margin: 0; font-size: 1.3rem; }
.gz-greeting p { margin: 2px 0 0; color: var(--gz-gray-600); font-size: 0.9rem; }

.gz-balance-card {
  margin: 0 20px 18px;
  padding: 22px;
  border-radius: var(--gz-radius-lg);
  background: linear-gradient(135deg, var(--gz-green), var(--gz-green-darker));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gz-balance-card .label { font-size: 0.85rem; opacity: 0.9; display: flex; align-items: center; gap: 6px; }
.gz-balance-toggle { background: none; border: none; color: #fff; opacity: 0.9; cursor: pointer; padding: 0; display: inline-flex; }
.gz-balance-card .amount { font-size: 1.9rem; font-weight: 800; margin: 4px 0; }
.gz-balance-card .value { font-size: 0.85rem; opacity: 0.85; margin-bottom: 14px; }
.gz-balance-card .gz-wallet-btn {
  background: #fff;
  color: var(--gz-green-dark);
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.gz-daily-banner {
  margin: 0 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--gz-gray-100);
  border-radius: var(--gz-radius);
  padding: 14px 16px;
}
.gz-daily-banner .txt { min-width: 0; }
.gz-daily-banner .txt strong { display: block; font-size: 0.95rem; }
.gz-daily-banner .txt span { font-size: 0.8rem; color: var(--gz-gray-600); }
.gz-daily-banner button, .gz-daily-banner .claimed {
  flex-shrink: 0;
  background: var(--gz-green-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  min-height: 40px;
}
.gz-daily-banner .claimed { background: var(--gz-gray-300); color: var(--gz-gray-600); cursor: default; }

.gz-section { padding: 0 20px 20px; }
.gz-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.gz-section-head h3 { margin: 0; font-size: 1.02rem; }
.gz-section-head a { font-size: 0.82rem; font-weight: 600; }

.gz-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.gz-reward-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 640px) {
  .gz-reward-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gz-service-card { text-align: center; }
.gz-service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 6px; color: #fff;
}
.gz-service-card .name { font-size: 0.75rem; font-weight: 600; line-height: 1.2; }
.gz-service-card .cost { font-size: 0.72rem; color: var(--gz-gold); font-weight: 700; margin-top: 2px; }

.gz-quick-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; background: var(--gz-gray-100); border-radius: var(--gz-radius); padding: 16px 8px; }
.gz-quick-action { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600; color: var(--gz-black); }
.gz-quick-action .ic { width: 42px; height: 42px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--gz-shadow); }

.gz-task-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--gz-gray-100);
}
.gz-task-left { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }
.gz-task-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; }
.gz-task-left > div { min-width: 0; }
.gz-task-title { font-weight: 700; font-size: 0.9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gz-task-desc { font-size: 0.75rem; color: var(--gz-gray-600); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gz-task-reward { font-size: 0.78rem; color: var(--gz-gold); font-weight: 700; margin-top: 2px; }
.gz-task-btn { flex-shrink: 0; background: var(--gz-gray-100); color: var(--gz-green-dark); border: none; border-radius: 10px; padding: 10px 16px; font-weight: 700; font-size: 0.8rem; cursor: pointer; display: inline-block; text-decoration: none; min-height: 38px; box-sizing: border-box; display: inline-flex; align-items: center; }

/* ---------- User-panel desktop sidebar (hidden on mobile/tablet — see the
   1024px breakpoint below, which is what actually reveals it) ---------- */
.gz-sidebar {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0; width: 246px;
  background: #fff; border-right: 1px solid var(--gz-gray-300);
  padding: 22px 16px; flex-direction: column; overflow-y: auto; z-index: 10;
}
.gz-sidebar-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.15rem; padding: 0 8px; margin-bottom: 24px; }
.gz-sidebar-brand img { width: 30px; height: 30px; }
.gz-sidebar-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.gz-sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 12px;
  color: var(--gz-black); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
}
.gz-sidebar-nav a:hover { background: var(--gz-gray-100); }
.gz-sidebar-nav a.active { background: var(--gz-green-dark); color: #fff; }
.gz-sidebar-logout { margin-top: 12px; }
.gz-sidebar-logout button {
  width: 100%; background: none; border: 1.5px solid var(--gz-gray-300);
  color: var(--gz-gray-600); padding: 11px; border-radius: 12px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
}
.gz-sidebar-logout button:hover { border-color: #FCA5A5; color: #B91C1C; }

.gz-bottomnav {
  position: fixed;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px;
  background: #fff; border-top: 1px solid var(--gz-gray-300);
  display: flex; justify-content: space-around; padding: 8px 0 max(10px, env(safe-area-inset-bottom));
}
.gz-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-size: 0.68rem; color: var(--gz-gray-600); font-weight: 600; padding: 6px 10px; min-width: 48px; min-height: 44px; }
.gz-nav-item.active { color: var(--gz-green-dark); }

/* ==========================================================================
   Tablet — the mobile layout gets more breathing room, no structural change
   ========================================================================== */
@media (min-width: 640px) {
  body { background: #EEF1EF; }

  .gz-container {
    max-width: 460px;
    margin: 40px auto;
    background: #fff;
    border-radius: var(--gz-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    padding: 40px 40px 44px;
    min-height: auto;
  }

  .gz-app { max-width: 640px; }
  .gz-bottomnav { max-width: 640px; }
}

/* ==========================================================================
   Desktop — persistent sidebar nav replaces the bottom tab bar; the app
   column widens and its grids pick up extra columns to use the space. Same
   components, same visual language — not a stretched phone layout.
   ========================================================================== */
@media (min-width: 1024px) {
  .gz-sidebar { display: flex; }

  .gz-app {
    max-width: 1040px;
    margin: 28px 28px 28px 278px;
    border-radius: var(--gz-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: calc(100vh - 56px);
    padding-bottom: 32px;
  }
  .gz-bottomnav { display: none; }

  .gz-topbar { padding: 26px 36px 10px; }
  .gz-greeting { padding: 8px 36px 20px; }
  .gz-greeting h2 { font-size: 1.5rem; }
  .gz-balance-card, .gz-daily-banner, .gz-section, .gz-ref-code-box { margin-left: 36px; margin-right: 36px; }
  .gz-page-head { padding: 22px 36px 8px; }
  .gz-page-sub { padding: 0 36px 16px; }
  .gz-tabs { padding: 0 36px 18px; }
  .gz-stat-grid { padding: 0 36px 18px; }

  /* Dashboard hero: balance card + daily bonus sit side by side instead of
     stacking, so the wide column reads as a dashboard, not a scaled-up phone. */
  .gz-dashboard-top { display: flex; align-items: stretch; gap: 20px; margin: 0 36px 22px; }
  .gz-dashboard-top .gz-balance-card { flex: 1.4; margin: 0; }
  .gz-dashboard-top .gz-daily-banner { flex: 1; margin: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; }
  .gz-dashboard-top .gz-daily-banner button, .gz-dashboard-top .gz-daily-banner .claimed { align-self: stretch; text-align: center; }

  /* .gz-service-grid is also the dashboard's "Popular Services" preview, which
     only ever shows up to 4 items — stays at 4 columns so it doesn't look sparse.
     .gz-reward-grid is the full /services catalog, which can hold many more. */
  .gz-service-grid { gap: 16px; }
  .gz-reward-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
  .gz-service-icon { width: 60px; height: 60px; font-size: 1.6rem; border-radius: 16px; }
  .gz-quick-actions { max-width: 620px; }
  .gz-quick-action .ic { width: 48px; height: 48px; font-size: 1.35rem; }
  .gz-stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gz-task-row { padding: 15px 0; }
  .gz-task-btn { padding: 10px 20px; }
}

@media (min-width: 1440px) {
  .gz-app { max-width: 1180px; }
  .gz-reward-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

/* ---------- Generic page shell (non-dashboard app pages) ---------- */
.gz-page-head { padding: 18px 20px 6px; display: flex; align-items: center; gap: 10px; }
.gz-page-head h1 { font-size: 1.25rem; margin: 0; }
.gz-page-head .back { font-size: 1.3rem; text-decoration: none; color: var(--gz-black); }
.gz-page-sub { padding: 0 20px 14px; color: var(--gz-gray-600); font-size: 0.85rem; }

.gz-tabs { display: flex; gap: 8px; padding: 0 20px 16px; overflow-x: auto; }
.gz-tab { padding: 8px 16px; border-radius: 999px; background: var(--gz-gray-100); font-size: 0.82rem; font-weight: 600; white-space: nowrap; color: var(--gz-gray-600); text-decoration: none; }
.gz-tab.active { background: var(--gz-green-dark); color: #fff; }

.gz-card { margin: 0 20px 14px; padding: 16px; border-radius: var(--gz-radius); background: #fff; border: 1px solid var(--gz-gray-300); }
.gz-card-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gz-card-row > strong:first-child { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gz-card-row > .gz-badge { flex-shrink: 0; }

.gz-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; text-transform: capitalize; }
.gz-badge-pending { background: #FEF3C7; color: #92400E; }
.gz-badge-processing { background: #DBEAFE; color: #1E40AF; }
.gz-badge-completed { background: #DCFCE7; color: #166534; }
.gz-badge-cancelled, .gz-badge-rejected { background: #FEE2E2; color: #991B1B; }
.gz-badge-refunded { background: #F3E8FF; color: #6B21A8; }
.gz-badge-approved { background: #DCFCE7; color: #166534; }
.gz-badge-active { background: #DCFCE7; color: #166534; }
.gz-badge-draft { background: var(--gz-gray-300); color: var(--gz-gray-600); }
.gz-badge-paused, .gz-badge-suspended { background: #FEF3C7; color: #92400E; }
.gz-badge-banned, .gz-badge-expired { background: #FEE2E2; color: #991B1B; }
.gz-badge-flagged { background: #FFEDD5; color: #9A3412; }
.gz-badge-inactive, .gz-badge-closed { background: var(--gz-gray-300); color: var(--gz-gray-600); }
.gz-btn-sm[disabled] { opacity: 0.4; cursor: not-allowed; }

.gz-empty { text-align: center; padding: 40px 20px; color: var(--gz-gray-600); }
.gz-empty .icon { font-size: 2.2rem; margin-bottom: 10px; }

.gz-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0 20px 16px; }
.gz-stat-box { background: var(--gz-gray-100); border-radius: var(--gz-radius); padding: 14px; text-align: center; }
.gz-stat-box .num { font-size: 1.4rem; font-weight: 800; color: var(--gz-green-dark); }
.gz-stat-box .lbl { font-size: 0.75rem; color: var(--gz-gray-600); margin-top: 2px; }

.gz-ref-code-box { margin: 0 20px 16px; padding: 18px; border-radius: var(--gz-radius); background: linear-gradient(135deg, var(--gz-green), var(--gz-green-darker)); color: #fff; text-align: center; }
.gz-ref-code-box .code { font-size: 1.3rem; font-weight: 800; letter-spacing: 2px; margin: 8px 0; }
.gz-copy-btn { background: #fff; color: var(--gz-green-dark); border: none; border-radius: 10px; padding: 8px 18px; font-weight: 700; font-size: 0.82rem; cursor: pointer; }

.gz-leader-row { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--gz-gray-100); }
.gz-leader-rank { width: 28px; flex-shrink: 0; font-weight: 800; color: var(--gz-gray-600); text-align: center; }
.gz-leader-rank.top1 { color: #F5A623; } .gz-leader-rank.top2 { color: #9CA3AF; } .gz-leader-rank.top3 { color: #B45309; }
.gz-leader-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.gz-leader-name { font-weight: 700; font-size: 0.9rem; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gz-leader-coins { font-weight: 700; color: var(--gz-gold); font-size: 0.85rem; flex-shrink: 0; }

.gz-notif-row { padding: 14px 20px; border-bottom: 1px solid var(--gz-gray-100); }
.gz-notif-row.unread { background: #F0FDF4; }
.gz-notif-title { font-weight: 700; font-size: 0.9rem; }
.gz-notif-body { font-size: 0.82rem; color: var(--gz-gray-600); margin-top: 2px; }
.gz-notif-time { font-size: 0.72rem; color: #A1A7B3; margin-top: 4px; }

.gz-form-label { display: block; font-size: 0.82rem; font-weight: 700; margin: 0 0 6px; }
textarea.gz-field-textarea { width: 100%; border: 1.5px solid var(--gz-gray-300); border-radius: var(--gz-radius); padding: 12px 14px; font-size: 0.92rem; font-family: inherit; resize: vertical; }
select.gz-select { width: 100%; border: 1.5px solid var(--gz-gray-300); border-radius: var(--gz-radius); padding: 14px 16px; font-size: 0.95rem; margin-bottom: 14px; background: #fff; }

/* ---------- Admin panel ---------- */
.gz-admin-body { display: flex; min-height: 100vh; font-family: 'Segoe UI', Arial, sans-serif; background: #F5F6F8; }
.gz-admin-sidebar { width: 230px; background: #14251C; color: #fff; padding: 20px 14px; flex-shrink: 0; }
.gz-admin-sidebar .brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.1rem; margin-bottom: 26px; padding: 0 8px; }
.gz-admin-sidebar .brand img { width: 28px; height: 28px; }
.gz-admin-nav a { display: block; padding: 10px 12px; border-radius: 10px; color: #C9D4CE; text-decoration: none; font-size: 0.87rem; margin-bottom: 2px; }
.gz-admin-nav a.active, .gz-admin-nav a:hover { background: var(--gz-green-dark); color: #fff; }
.gz-admin-main { flex: 1; padding: 26px 32px; max-width: 1200px; }
.gz-admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.gz-admin-header h1 { margin: 0; font-size: 1.4rem; }
.gz-admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 26px; }
.gz-admin-stat { background: #fff; border-radius: var(--gz-radius); padding: 18px; box-shadow: var(--gz-shadow); }
.gz-admin-stat .num { font-size: 1.6rem; font-weight: 800; }
.gz-admin-stat .lbl { font-size: 0.8rem; color: var(--gz-gray-600); }
.gz-admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--gz-radius); overflow: hidden; box-shadow: var(--gz-shadow); }
.gz-admin-table th { text-align: left; background: var(--gz-gray-100); padding: 10px 14px; font-size: 0.75rem; text-transform: uppercase; color: var(--gz-gray-600); letter-spacing: 0.5px; }
.gz-admin-table td { padding: 10px 14px; font-size: 0.87rem; border-top: 1px solid var(--gz-gray-100); vertical-align: middle; }
.gz-admin-table tr:hover td { background: #FAFCFA; }
.gz-admin-panel { background: #fff; border-radius: var(--gz-radius); padding: 20px; box-shadow: var(--gz-shadow); margin-bottom: 20px; }
.gz-btn-sm { padding: 5px 12px; border-radius: 8px; font-size: 0.78rem; font-weight: 700; border: none; cursor: pointer; }
.gz-btn-sm.approve { background: #DCFCE7; color: #166534; }
.gz-btn-sm.reject { background: #FEE2E2; color: #991B1B; }
.gz-btn-sm.primary { background: var(--gz-green-dark); color: #fff; }
.gz-btn-sm.ghost { background: var(--gz-gray-100); color: var(--gz-black); }
.gz-admin-form input, .gz-admin-form select, .gz-admin-form textarea {
  width: 100%; border: 1.5px solid var(--gz-gray-300); border-radius: 10px; padding: 10px 12px;
  font-size: 0.88rem; margin-bottom: 12px; font-family: inherit;
}
.gz-admin-form label { font-size: 0.8rem; font-weight: 700; display: block; margin-bottom: 5px; }
