/* ==========================================================================
   TradeMatch AI - Global Sourcing & Procurement Design System
   S-tier SaaS Theme (Linear / Stripe / Vercel lineage)
   ========================================================================== */

:root {
  /* Brand Accent - International Trade Indigo & Sapphire */
  --brand-50: #EEF2FF;
  --brand-100: #E0E7FF;
  --brand-200: #C7D2FE;
  --brand-500: #6366F1;
  --brand-600: #4F46E5;
  --brand-700: #4338CA;
  --brand-800: #3730A3;
  --brand-900: #312E81;
  --brand-fg: var(--brand-600);
  --brand-bg-subtle: var(--brand-50);

  /* Cool Slate Neutrals */
  --neutral-0: #FFFFFF;
  --neutral-50: #F8FAFC;
  --neutral-100: #F1F5F9;
  --neutral-200: #E2E8F0;
  --neutral-300: #CBD5E1;
  --neutral-400: #94A3B8;
  --neutral-500: #64748B;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;
  --neutral-950: #020617;

  /* Surfaces */
  --bg-canvas: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-hover: #F1F5F9;
  --bg-active: #E2E8F0;

  --text-primary: #0F172A;
  --text-muted: #475569;
  --text-subtle: #94A3B8;

  --border-default: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Status Colors */
  --success-fg: #15803D;
  --success-bg: #DCFCE7;
  --success-border: #86EFAC;

  --warning-fg: #A16207;
  --warning-bg: #FEF9C3;
  --warning-border: #FDE68A;

  --error-fg: #B91C1C;
  --error-bg: #FEE2E2;
  --error-border: #FCA5A5;

  --info-fg: #1D4ED8;
  --info-bg: #DBEAFE;
  --info-border: #93C5FD;

  --accent-cyan-fg: #0E7490;
  --accent-cyan-bg: #CFFAFE;

  /* Typography & Sizing */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);

  --ring-focus: 0 0 0 3px rgba(79, 70, 229, 0.2);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-150: 150ms;
  --duration-200: 200ms;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-canvas: #0B0F19;
    --bg-surface: #111827;
    --bg-elevated: #1F2937;
    --bg-hover: rgba(255, 255, 255, 0.05);
    --bg-active: rgba(255, 255, 255, 0.08);

    --text-primary: #F1F5F9;
    --text-muted: #94A3B8;
    --text-subtle: #64748B;

    --border-default: #1F2937;
    --border-strong: #374151;

    --brand-fg: #818CF8;
    --brand-bg-subtle: rgba(99, 102, 241, 0.15);

    --success-fg: #4ADE80;
    --success-bg: rgba(22, 163, 74, 0.16);
    --success-border: rgba(74, 222, 128, 0.3);

    --warning-fg: #FACC15;
    --warning-bg: rgba(202, 138, 4, 0.16);
    --warning-border: rgba(250, 204, 21, 0.3);

    --error-fg: #F87171;
    --error-bg: rgba(220, 38, 38, 0.16);
    --error-border: rgba(248, 113, 113, 0.3);

    --info-fg: #60A5FA;
    --info-bg: rgba(37, 99, 235, 0.16);
    --info-border: rgba(96, 165, 250, 0.3);

    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 20px -6px rgba(0, 0, 0, 0.6);
  }
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography Helpers */
.tabular-nums {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
}

/* App Shell Structure */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top Navbar */
.topbar {
  height: 54px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
}

.brand-icon-box {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-600), #2563EB);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.25);
}

.engine-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--brand-bg-subtle);
  color: var(--brand-fg);
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* User Role & View Selector */
.role-pill-toggle {
  display: flex;
  background: var(--neutral-100);
  padding: 2px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
}

.role-pill-btn {
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--duration-150) var(--ease-out);
}

.role-pill-btn.active {
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
}

/* KPI Banner Strip */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  padding: 1rem 1.25rem 0.25rem;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.kpi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kpi-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.kpi-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.kpi-sub {
  font-size: 0.7rem;
  color: var(--text-subtle);
}

/* Sub-Navigation Tabs */
.tab-nav-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-default);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav-bar::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.65rem 0.9rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--duration-150) var(--ease-out);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--brand-fg);
  font-weight: 600;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--brand-fg);
  border-radius: 2px 2px 0 0;
}

.tab-badge {
  background: var(--neutral-100);
  color: var(--text-muted);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
}

.tab-btn.active .tab-badge {
  background: var(--brand-bg-subtle);
  color: var(--brand-fg);
}

/* Main Content Surface */
.main-content {
  flex: 1;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 1.25rem;
}

/* Card Component */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

.card-body {
  padding: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 32px;
  padding: 0 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--duration-150) var(--ease-out);
  white-space: nowrap;
  font-family: inherit;
}

.btn-sm {
  height: 28px;
  padding: 0 0.65rem;
  font-size: 0.74rem;
}

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}

.btn-primary:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--neutral-400);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.btn-success {
  background: #16A34A;
  color: #fff;
}

.btn-success:hover {
  background: #15803D;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.2;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.badge-info {
  background: var(--info-bg);
  color: var(--info-fg);
  border: 1px solid var(--info-border);
}

.badge-info .badge-dot { background: var(--info-fg); }

.badge-success {
  background: var(--success-bg);
  color: var(--success-fg);
  border: 1px solid var(--success-border);
}

.badge-success .badge-dot { background: var(--success-fg); }

.badge-warning {
  background: var(--warning-bg);
  color: var(--warning-fg);
  border: 1px solid var(--warning-border);
}

.badge-warning .badge-dot { background: var(--warning-fg); }

.badge-neutral {
  background: var(--neutral-100);
  color: var(--neutral-700);
  border: 1px solid var(--neutral-200);
}

.badge-neutral .badge-dot { background: var(--neutral-400); }

.badge-brand {
  background: var(--brand-bg-subtle);
  color: var(--brand-fg);
  border: 1px solid rgba(79, 70, 229, 0.25);
}

.badge-brand .badge-dot { background: var(--brand-fg); }

/* Form Elements */
.input, .select, .textarea {
  width: 100%;
  height: 34px;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-family: inherit;
  transition: border-color var(--duration-150) var(--ease-out), box-shadow var(--duration-150) var(--ease-out);
}

.textarea {
  height: auto;
  min-height: 72px;
  padding: 0.6rem 0.75rem;
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-fg);
  box-shadow: var(--ring-focus);
}

.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.field-hint {
  font-size: 0.7rem;
  color: var(--text-subtle);
  margin-top: 0.25rem;
}

/* Grid systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 840px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Procurement Request Card & Corridor Layout */
.request-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  transition: all var(--duration-150) var(--ease-out);
  position: relative;
  cursor: pointer;
}

.request-card:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-sm);
}

.request-card.selected {
  border-color: var(--brand-fg);
  box-shadow: 0 0 0 1px var(--brand-fg);
  background: var(--bg-surface);
}

.corridor-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--neutral-50);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  margin: 0.75rem 0;
}

.port-node {
  flex: 1;
}

.port-node .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
  font-weight: 600;
}

.port-node .country {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.port-node .port {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.corridor-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--brand-fg);
  padding: 0 0.5rem;
}

.corridor-arrow span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--text-subtle);
}

/* Match Card */
.partner-option-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--duration-150) var(--ease-out);
}

.partner-option-card:hover {
  border-color: var(--neutral-400);
}

.partner-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.registry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
  font-size: 0.68rem;
  font-weight: 600;
}

.match-score-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.match-score-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: #10B981;
  font-family: var(--font-mono);
}

.match-score-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Progress / Stepper Bar */
.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 1.5rem 0 1rem;
}

.stepper::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--border-default);
  z-index: 1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 0.35rem;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-subtle);
  transition: all var(--duration-150) var(--ease-out);
}

.step-item.completed .step-circle {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
}

.step-item.active .step-circle {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.step-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.step-item.active .step-label {
  color: var(--brand-fg);
  font-weight: 600;
}

/* Audit Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 2px;
  background: var(--border-default);
}

.timeline-entry {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -1.25rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--brand-fg);
}

.timeline-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.timeline-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.timeline-time {
  font-size: 0.68rem;
  color: var(--text-subtle);
  font-family: var(--font-mono);
}

.timeline-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Modal and Slide-Over */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-enter 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
}

.modal-footer {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border-default);
  background: var(--neutral-50);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Notification Item */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-surface);
  transition: background var(--duration-150) var(--ease-out);
}

.notif-item:hover {
  background: var(--bg-hover);
}

.notif-item.unread {
  background: #F8FAFC;
  border-left: 3px solid var(--brand-fg);
}

.notif-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.notif-icon-match {
  background: var(--brand-bg-subtle);
  color: var(--brand-fg);
}

.notif-icon-quote {
  background: #DCFCE7;
  color: #15803D;
}

.notif-icon-status {
  background: #FEF9C3;
  color: #A16207;
}

/* Embed Generator Code Box */
.code-box {
  background: #0F172A;
  color: #E2E8F0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #1E293B;
  overflow-x: auto;
  position: relative;
  line-height: 1.5;
}

.code-box pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Embed Simulated Iframe View */
.embed-preview-wrapper {
  background: var(--neutral-100);
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}

.embed-preview-device {
  width: 100%;
  max-width: 640px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.embed-device-bar {
  background: var(--neutral-100);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-default);
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-300);
}

/* Responsive utilities */
@media (max-width: 640px) {
  .topbar {
    padding: 0 0.75rem;
  }
  .main-content {
    padding: 0.75rem;
  }
  .kpi-strip {
    grid-template-columns: 1fr;
    padding: 0.75rem 0.75rem 0;
  }
}
