/* =========================================================
   3T Dial — Midnight Violet design system
   A Product of Tech Talk Titans
   ========================================================= */

:root {
  --bg:           #0B0E14;
  --surface:      #131720;
  --surface-2:    #1A1F2E;
  --border:       #252B3A;
  --text:         #E8EAF0;
  --muted:        #8B93A7;
  --primary:      #7C5CFF;
  --primary-h:    #9179FF;
  --primary-soft: rgba(124, 92, 255, 0.14);
  --success:      #22C55E;
  --success-soft: rgba(34, 197, 94, 0.14);
  --danger:       #EF4444;
  --danger-soft:  rgba(239, 68, 68, 0.14);
  --cyan:         #22D3EE;
  --warning:      #F59E0B;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --t: 150ms ease-out;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
[x-cloak] { display: none !important; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface-2); }

/* ---------- Typography ---------- */
h1 { font-size: 22px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
h2 { font-size: 18px; font-weight: 600; margin: 0; }
h3 { font-size: 15px; font-weight: 600; margin: 0 0 12px; }
p  { margin: 0 0 12px; }

.muted { color: var(--muted); }
.small { font-size: 12px; }
.tabular { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.full { width: 100%; }
.row { display: flex; gap: 8px; align-items: center; }
.stack { display: grid; gap: 12px; }
a { color: var(--primary); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--primary-h); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t), transform var(--t), color var(--t), border-color var(--t);
  min-height: 44px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover:not(:disabled) { background: var(--primary-h); }
.btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn.ghost:hover:not(:disabled) { background: var(--surface-2); }
.btn.danger { background: var(--danger); color: #fff; }
.btn.small { padding: 7px 12px; font-size: 12px; min-height: 32px; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 0; color: var(--text);
  border-radius: var(--r-sm); cursor: pointer;
  transition: background var(--t);
}
.icon-btn:hover { background: var(--surface-2); }

.link {
  background: none; border: 0; color: var(--primary);
  cursor: pointer; padding: 8px 0; font-size: 13px;
  font-family: inherit; text-align: left;
}
.link:hover { color: var(--primary-h); }

/* ---------- Inputs ---------- */
input, textarea {
  width: 100%;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--t), background var(--t);
}
input::placeholder { color: var(--muted); }
input:focus, textarea:focus { border-color: var(--primary); }
input:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Auth screens ---------- */
.auth-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.auth-card {
  width: 100%; max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}

/* ---------- 3T Dial brand block ---------- */
.brand {
  text-align: center;
  margin-bottom: 20px;
}
.brand-logo {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(124, 92, 255, 0.35));
}
.brand h1 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  background: linear-gradient(135deg, #E8EAF0 0%, #9179FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-slogan {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
}
.brand-parent {
  font-size: 11px;
  color: var(--muted);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

/* Profile footer */
.brand-footer {
  text-align: center;
  margin-top: 32px;
  padding: 20px 0 4px;
}
.brand-footer-logo {
  width: 48px; height: 48px;
  margin: 0 auto 8px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}
.brand-footer-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.brand-footer-slogan {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}
.brand-footer-parent {
  font-size: 10px;
  color: var(--muted);
  margin-top: 6px;
  opacity: 0.75;
}

/* ---------- OTP blocks ---------- */
.otp-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  margin-top: 16px;
}
.otp-block.done { border-color: var(--success); }
.otp-head {
  display: flex; justify-content: space-between;
  font-size: 13px; margin-bottom: 8px; color: var(--muted);
}
.err { color: var(--danger); font-size: 13px; margin: 8px 0 0; }
.ok  { color: var(--success); font-size: 13px; }

/* ---------- App shell ---------- */
.app {
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-bottom: 88px;
}
.app-main { flex: 1; max-width: 960px; width: 100%; margin: 0 auto; }
.page { padding: 20px 16px; }
.page-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  min-height: 32px;
}

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; gap: 2px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  background: rgba(19, 23, 32, 0.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
}
.nav-item {
  flex: 1; max-width: 120px;
  display: flex; flex-direction: column; align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: 11px; font-weight: 500;
  transition: color var(--t), background var(--t);
  text-decoration: none;
  min-height: 52px;
}
.nav-item:hover { color: var(--text); }
.nav-item.active {
  color: var(--primary);
  background: var(--primary-soft);
}

/* ---------- Segmented tabs ---------- */
.seg {
  display: flex; gap: 2px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.seg-btn {
  flex: 1; padding: 10px 12px;
  border: 0; background: transparent;
  color: var(--muted);
  border-radius: 9px;
  cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600;
  transition: background var(--t), color var(--t);
}
.seg-btn.active { background: var(--surface); color: var(--text); }

/* ---------- Lists ---------- */
.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.li-body { flex: 1; min-width: 0; }
.li-title { font-weight: 600; font-size: 14px; }
.li-sub { font-size: 12px; color: var(--muted); }

.avatar-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  margin-bottom: 12px;
}

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed; left: 50%; bottom: 100px;
  transform: translateX(-50%);
  z-index: 300;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  animation: toastIn var(--t) ease-out;
  max-width: 340px;
}
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error   { border-color: var(--danger);  color: var(--danger); }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Empty states ---------- */
.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
}
.empty-state svg { margin-bottom: 12px; opacity: 0.4; }
.empty-state p { max-width: 280px; font-size: 13px; margin: 0; }

/* ---------- Icons ---------- */
[data-lucide] { display: inline-block; vertical-align: middle; stroke-width: 2; }

/* ---------- Responsive ---------- */
.hidden-mobile { display: none; }
@media (min-width: 721px) { .hidden-mobile { display: block; } }
.mobile-only { display: inline-flex; }
@media (min-width: 721px) { .mobile-only { display: none; } }

/* =========================================================
   3T Dial — Phase 2 components
   ========================================================= */

/* ---------- Country picker ---------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.country-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 12px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text);
  font-family: inherit;
  transition: background var(--t), border-color var(--t);
}
.country-btn:hover { background: var(--surface-2); border-color: var(--primary); }
.country-flag { font-size: 32px; line-height: 1; }
.country-name { font-weight: 600; font-size: 13px; }

/* ---------- Filters ---------- */
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  margin-bottom: 12px;
}
.chip-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.chip {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-transform: capitalize;
}
.chip:hover { color: var(--text); }
.chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------- Badges ---------- */
.badge-sm {
  display: inline-block;
  padding: 1px 7px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-sm.ok {
  background: var(--success-soft);
  color: var(--success);
}

/* ---------- Price tag ---------- */
.price-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

/* ---------- Dialer ---------- */
.dialer { text-align: center; padding: 12px 0 20px; }
.dialer-number {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 42px;
  margin-bottom: 24px;
  word-break: break-all;
}
.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.key {
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  font-family: inherit;
}
.key:hover { background: var(--surface-2); }
.key:active { background: var(--primary); transform: scale(0.95); }
.key-num { font-size: 22px; font-weight: 500; }
.key-sub { font-size: 9px; letter-spacing: 0.1em; color: var(--muted); margin-top: 2px; }
.dialer-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 40px;
  margin-top: 28px;
}
.key-flat {
  background: transparent; border: 0; color: var(--muted);
  cursor: pointer; padding: 10px;
}
.btn.big-round {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--success);
  padding: 0;
}
.btn.big-round.danger { background: var(--danger); }

.dir-in    { color: var(--success) !important; }
.dir-out   { color: var(--cyan) !important; }
.dir-missed{ color: var(--danger) !important; }

.play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--surface-2);
  color: var(--primary);
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ---------- In-call overlay ---------- */
.incall {
  position: fixed; inset: 0; z-index: 100;
  background: radial-gradient(circle at top, #1a1f35 0%, #05070d 70%);
  display: flex; flex-direction: column; align-items: center;
  padding: 60px 24px 40px;
  animation: fade .25s ease-out;
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.incall-top { text-align: center; margin-bottom: auto; }
.incall-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: grid; place-items: center;
  font-size: 36px; font-weight: 700; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px rgba(124, 92, 255, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(124, 92, 255, 0.15); }
  50%      { box-shadow: 0 0 0 16px rgba(124, 92, 255, 0.05); }
}
.incall-name   { font-size: 24px; font-weight: 700; }
.incall-number { color: var(--muted); margin-top: 4px; font-variant-numeric: tabular-nums; }
.incall-status { color: var(--cyan); margin-top: 12px; font-size: 14px; min-height: 20px; }

.incall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%; max-width: 380px;
  margin-bottom: 40px;
}
.call-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--t), border-color var(--t), color var(--t);
  min-height: 76px;
}
.call-btn:hover { background: var(--surface-2); }
.call-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.cb-label { font-size: 12px; font-weight: 500; }
.incall-end { display: flex; justify-content: center; }

/* ---------- SMS ---------- */
.sms-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  padding: 20px 16px;
  height: calc(100vh - 88px);
}
@media (max-width: 720px) {
  .sms-page {
    grid-template-columns: 1fr;
    padding: 0;
    height: calc(100vh - 72px);
  }
}
.sms-list {
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.sms-list .list { overflow-y: auto; }
.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
  color: var(--muted);
}
.search input {
  border: 0; background: transparent; padding: 0;
  color: var(--text);
}
.badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.sms-thread {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 0;
}
.sms-thread.empty { display: grid; place-items: center; }
.thread-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.thread-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.bubble {
  max-width: 76%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}
.bubble.in {
  background: var(--surface-2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble.out {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.bubble-time {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
}
.thread-input {
  display: flex; gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.btn.round {
  width: 44px; height: 44px;
  border-radius: 50%;
  padding: 0;
  flex-shrink: 0;
}

/* ---------- Wallet ---------- */
.balance-card {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(34, 211, 238, 0.15));
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.balance { font-size: 32px; font-weight: 700; margin-top: 4px; }
.tx-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--muted);
  flex-shrink: 0;
}
.tx-icon.in      { color: var(--success); background: var(--success-soft); }
.tx-icon.out     { color: var(--danger);  background: var(--danger-soft); }
.tx-icon.neutral { color: var(--primary); background: var(--primary-soft); }
.amount { font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.amount.pos { color: var(--success); }
.amount.neg { color: var(--danger); }

/* ---------- Modal ---------- */
.modal-back {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 20px;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  width: 100%; max-width: 380px;
  animation: modalIn .15s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.modal input { margin-bottom: 14px; }

/* ---------- Profile ---------- */
.profile-head {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 20px;
}
.avatar-lg {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: grid; place-items: center;
  font-size: 28px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.profile-info .profile-name {
  font-size: 20px; font-weight: 700;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.stat-val { font-size: 22px; font-weight: 700; margin-top: 4px; }
.logout { margin-top: 24px; }

/* ---------- Docs / legal ---------- */
.doc { line-height: 1.65; font-size: 14px; }
.doc h3 { margin-top: 20px; color: var(--text); }
.doc p, .doc li { color: var(--muted); }
.doc ul { padding-left: 20px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
.pricing-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* ---------- Admin table ---------- */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.admin-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 6px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table input,
.admin-table select {
  padding: 6px 8px;
  font-size: 12px;
  min-height: 32px;
}
.admin-table input[type="checkbox"] {
  width: 18px; height: 18px; min-height: auto;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ---------- Skeleton / loading ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-row {
  height: 56px;
  border-radius: var(--r-md);
  margin-bottom: 6px;
}

/* ---------- Divider / row-between ---------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.row-between {
  display: flex; justify-content: space-between; align-items: center;
}
