/* ============================================================
   KimiPayHQ Portal — Cowpay-Inspired Design System
   ============================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue:        #1677FF;
  --blue-hover:  #0958D9;
  --blue-light:  #E6F4FF;
  --blue-mid:    #91CAFF;
  --green:       #52C41A;
  --green-light: #F6FFED;
  --red:         #FF4D4F;
  --red-light:   #FFF1F0;
  --orange:      #FA8C16;
  --orange-light:#FFF7E6;
  --purple:      #722ED1;
  --purple-light:#F9F0FF;

  /* Layout */
  --sidebar-bg:   #001529;
  --sidebar-w:    220px;
  --topbar-h:     56px;
  --body-bg:      #F0F2F5;
  --card-bg:      #FFFFFF;
  --border:       #E8E8E8;
  --border2:      #D9D9D9;

  /* Text */
  --text-h:       #000000D9;
  --text-p:       #000000A6;
  --text-muted:   #00000073;

  /* Effects */
  --shadow-sm:  0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow:     0 2px 8px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.1);
  --radius:     8px;
  --radius-sm:  6px;
  --radius-lg:  12px;
  --transition: 0.2s ease;
}

html { font-size: 14px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--body-bg);
  color: var(--text-h);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }

/* ─────────────────────────────────────────────────────────
   LOGIN PAGE — Cowpay Style
───────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 0% 100%, #BFDBFE 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, #FDE68A 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, #DDD6FE 0%, transparent 50%),
    linear-gradient(145deg, #EFF6FF 0%, #FFFFFF 40%, #FFF7ED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative dots grid */
.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

/* Wave decorations */
.login-deco {
  position: absolute;
  pointer-events: none;
  opacity: .12;
}
.login-deco-tl {
  top: -60px; left: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, #60A5FA, transparent 70%);
}
.login-deco-br {
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, #A78BFA, transparent 70%);
}

.login-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 16px;
}

.login-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.8);
}

.login-title {
  text-align: center;
  margin-bottom: 28px;
}
.login-title .brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-h);
  letter-spacing: -0.3px;
}
.login-title .brand span { color: var(--blue); }
.login-title .sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Input Groups */
.form-group { margin-bottom: 14px; }
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 12px;
  color: #BFBFBF;
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}
.form-input {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 38px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-h);
  background: #FFFFFF;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(22,119,255,.15);
}
.form-input::placeholder { color: #BFBFBF; }

/* Captcha row */
.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.captcha-box {
  background: linear-gradient(135deg, #1677FF, #722ED1);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  cursor: pointer;
  user-select: none;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.captcha-expr {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 0 rgba(0,0,0,.3);
}

/* Remember + Forgot */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
}
.remember-check {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--text-p);
}
.remember-check input[type="checkbox"] {
  accent-color: var(--blue);
  width: 14px; height: 14px;
}

/* Login Button */
.login-btn {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #1677FF, #0050B3);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
}
.login-btn:hover {
  background: linear-gradient(90deg, #4096FF, #1677FF);
  box-shadow: 0 4px 16px rgba(22,119,255,.4);
  transform: translateY(-1px);
}
.login-btn:active { transform: translateY(0); }

/* Alert */
.login-alert {
  background: var(--red-light);
  border: 1px solid #FFCCC7;
  color: var(--red);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────────────────
   APP LAYOUT — Ant Design / Cowpay Style
───────────────────────────────────────────────────────── */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  transition: width var(--transition);
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

.sidebar-logo {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.logo-accent { color: #1677FF; }

.sidebar-nav { padding: 8px 0; flex: 1; }

.nav-section-label {
  padding: 16px 16px 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 42px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}
.nav-item:hover {
  color: #ffffff;
  background: rgba(255,255,255,.05);
}
.nav-item.active {
  color: #ffffff;
  background: var(--blue);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #40A9FF;
  border-radius: 0 2px 2px 0;
}
.nav-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.nav-logout { color: rgba(255,100,100,.7); margin-top: 8px; }
.nav-logout:hover { color: #FF7875; background: rgba(255,77,79,.08); }

/* ── Main ──────────────────────────────────────────────── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Topbar ────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,21,41,.08);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb .current { color: var(--text-h); font-weight: 500; }
.breadcrumb-sep { color: var(--text-muted); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-muted);
  transition: background var(--transition);
}
.topbar-icon-btn:hover { background: var(--body-bg); color: var(--blue); }

.merchant-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #722ED1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.merchant-info { text-align: right; cursor: pointer; }
.merchant-info .mid {
  font-size: 11px;
  color: var(--blue);
  font-family: monospace;
  font-weight: 600;
  background: var(--blue-light);
  padding: 2px 8px;
  border-radius: 10px;
}
.merchant-info .mname {
  font-size: 13px;
  color: var(--text-h);
  font-weight: 500;
}

/* ── Page Content ──────────────────────────────────────── */
.page-content { padding: 20px 24px; flex: 1; }

.page-header { margin-bottom: 20px; }
.page-header h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 2px;
}
.page-header p { font-size: 13px; color: var(--text-muted); }

/* ── Dashboard Stats Grid ──────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-icon-box {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.stat-icon-blue   { background: var(--blue-light); }
.stat-icon-green  { background: var(--green-light); }
.stat-icon-orange { background: var(--orange-light); }
.stat-icon-purple { background: var(--purple-light); }
.stat-icon-red    { background: var(--red-light); }

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: -0.5px;
  line-height: 1;
}
.stat-footer {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.stat-change-up   { color: var(--green); }
.stat-change-down { color: var(--red); }

/* Balance Hero */
.balance-card {
  background: linear-gradient(135deg, #1677FF 0%, #0050B3 60%, #722ED1 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.balance-card::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.balance-card::before {
  content: '';
  position: absolute;
  right: 40px; bottom: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.balance-label { font-size: 12px; opacity: .8; letter-spacing: .5px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.balance-amount { font-size: 36px; font-weight: 800; letter-spacing: -1px; line-height: 1; position: relative; z-index: 1; }
.balance-currency { font-size: 16px; opacity: .8; margin-right: 4px; }
.balance-sub { font-size: 12px; opacity: .6; margin-top: 8px; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-header h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-h);
}
.card-header .card-actions { display: flex; gap: 8px; }
.card-body { padding: 20px; }

/* ── Tables ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
thead th {
  padding: 10px 14px;
  background: #FAFAFA;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #F5F5F5;
  color: var(--text-p);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFEFF; }
.td-mono { font-family: 'SFMono-Regular', Consolas, monospace; font-size: 12.5px; color: var(--text-h); }
.td-amount { font-weight: 600; color: var(--text-h); }
.empty-row td { text-align: center; color: var(--text-muted); padding: 40px !important; font-size: 14px; }

/* ── Status Badges ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}
.badge-success  { background: var(--green-light);  color: #389E0D; border: 1px solid #B7EB8F; }
.badge-warning, .badge-pending { background: var(--orange-light); color: #D46B08; border: 1px solid #FFD591; }
.badge-danger, .badge-failed   { background: var(--red-light);    color: #CF1322; border: 1px solid #FFA39E; }
.badge-info     { background: var(--blue-light);   color: #096DD9; border: 1px solid var(--blue-mid); }
.badge-secondary { background: #FAFAFA; color: var(--text-muted); border: 1px solid var(--border); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  height: 34px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; box-shadow: 0 4px 12px rgba(22,119,255,.35); }

.btn-default {
  background: #fff;
  color: var(--text-p);
  border-color: var(--border2);
}
.btn-default:hover { color: var(--blue); border-color: var(--blue); }

.btn-success { background: var(--green);  color: #fff; border-color: var(--green); }
.btn-danger  { background: var(--red);    color: #fff; border-color: var(--red); }
.btn-sm { height: 28px; padding: 4px 10px; font-size: 12.5px; }
.btn-lg { height: 40px; padding: 8px 20px; font-size: 15px; }

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-p);
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  height: 36px;
  padding: 0 11px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-h);
  background: #fff;
  transition: all var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(22,119,255,.15); }
.form-control::placeholder { color: #BFBFBF; }
textarea.form-control { height: auto; padding: 8px 11px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23BFBFBF' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  margin-bottom: 14px;
  border-left: 3px solid;
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert-success { background: var(--green-light);  color: #389E0D; border-color: var(--green); }
.alert-error, .alert-danger { background: var(--red-light);  color: var(--red);  border-color: var(--red); }
.alert-warning { background: var(--orange-light); color: var(--orange); border-color: var(--orange); }
.alert-info    { background: var(--blue-light);   color: var(--blue);   border-color: var(--blue); }

/* ── Tabs ───────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.tab-btn {
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  font-family: inherit;
}
.tab-btn:hover { color: var(--blue); }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 500; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Code Block ─────────────────────────────────────────── */
.code-block {
  background: #001529;
  color: #A6E22E;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  position: relative;
}
.code-copy-btn {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  border: none;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
}

/* ── Key Display ─────────────────────────────────────────── */
.key-display {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.key-display code {
  font-family: monospace;
  font-size: 13px;
  flex: 1;
  word-break: break-all;
  color: var(--text-h);
}

/* ── Filter Bar ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 16px;
}
.filter-bar .form-control { width: auto; min-width: 140px; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  margin-top: 16px;
  align-items: center;
}
.page-btn {
  min-width: 32px; height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-p);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.page-btn:hover { color: var(--blue); border-color: var(--blue); }
.page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-info { font-size: 13px; color: var(--text-muted); padding: 0 8px; }

/* ── Copy Toast ─────────────────────────────────────────── */
.copy-toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #001529;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.copy-toast.show { opacity: 1; }

/* ── Responsive ─────────────────────────────────────────── */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
}
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
  .main-content { margin-left: 0; }
  .sidebar-toggle { display: flex; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .page-content { padding: 14px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ──────────────────────────────────────────── */
.d-flex { display: flex; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.w-100 { width: 100%; }
.shrink-0 { flex-shrink: 0; }
