/* ============================================================
   VegaFi Scenarios - Global Styles
   ============================================================ */

/* ---------- Reset & Variables ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #2b6cb0;
  --accent: #38a169;
  --accent-hover: #2f855a;
  --bg: #f7fafc;
  --card: #ffffff;
  --text: #2d3748;
  --text-light: #4a5568;
  --subtle: #718096;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --danger: #e53e3e;
  --danger-hover: #c53030;
  --warning: #d69e2e;
  --info: #3182ce;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --transition: 150ms ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary); }

img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}
h1 { font-size: 1.75rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

/* ---------- Login Page ---------- */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 1rem;
}

.login-card {
  background: #0f1a2e;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.login-logo img {
  display: block;
  margin: 0 auto;
}

.login-subtitle {
  color: #94a3b8;
  font-size: .85rem;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-card .form-group {
  text-align: left;
}

.login-card .form-group label {
  color: #94a3b8;
}

.login-card .form-control {
  background: #1a2744;
  border-color: #2d3f5e;
  color: #e2e8f0;
}

.login-card .form-control::placeholder {
  color: #4a5568;
}

.login-card .form-control:focus {
  border-color: #3b82f6;
  background: #1e2d4a;
}

.login-card .btn-primary {
  width: 100%;
  margin-top: .5rem;
}

.login-error {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: .65rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem;
  display: none;
}
.login-error.visible { display: block; }

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

/* ---------- Top Nav ---------- */
.top-nav {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -.01em;
}

.nav-brand:hover { color: #fff; }

.nav-brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  padding: .45rem .85rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-user {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
}

.btn-logout {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem .75rem;
  border-radius: var(--radius);
  font-size: .8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-logout:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}

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

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-header h1 {
  font-size: 1.5rem;
}

/* ---------- Stats Cards ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--subtle);
  font-weight: 600;
  margin-bottom: .35rem;
}

.stat-value {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-card .stat-icon {
  float: right;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-icon.blue { background: #ebf8ff; color: var(--secondary); }
.stat-icon.green { background: #f0fff4; color: var(--accent); }
.stat-icon.purple { background: #faf5ff; color: #805ad5; }
.stat-icon.orange { background: #fffaf0; color: #dd6b20; }

/* ---------- Cards & Panels ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.card-header h2 {
  font-size: 1rem;
  font-weight: 600;
}

.card-body {
  padding: 1.5rem;
}

/* ---------- Tables ---------- */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

thead th {
  text-align: left;
  padding: .75rem 1rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--subtle);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  white-space: nowrap;
}

tbody td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

tbody tr:hover { background: #f7fafc; }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-gray    { background: #edf2f7; color: #4a5568; }
.badge-blue    { background: #ebf8ff; color: #2b6cb0; }
.badge-green   { background: #f0fff4; color: #276749; }
.badge-red     { background: #fff5f5; color: #c53030; }
.badge-yellow  { background: #fffff0; color: #975a16; }
.badge-purple  { background: #faf5ff; color: #6b46c1; }
.badge-orange  { background: #fffaf0; color: #c05621; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  line-height: 1.4;
  white-space: nowrap;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-primary:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--border);
}
.btn-outline:hover:not(:disabled) {
  background: var(--bg);
  border-color: #cbd5e0;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}
.btn-danger:hover:not(:disabled) {
  background: var(--danger-hover);
  border-color: var(--danger-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--subtle);
  border: none;
  padding: .4rem .6rem;
}
.btn-ghost:hover { color: var(--text); background: var(--bg); }

.btn-sm {
  padding: .3rem .7rem;
  font-size: .8rem;
}

.btn-lg {
  padding: .7rem 1.5rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* ---------- Forms ---------- */
.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--subtle);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-light);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: .3rem;
}

.form-group label .required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--card);
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(43,108,176,.12);
}

.form-control::placeholder {
  color: #a0aec0;
}

.form-control.error {
  border-color: var(--danger);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2rem;
}

.form-hint {
  font-size: .75rem;
  color: var(--subtle);
  margin-top: .25rem;
}

.form-error {
  font-size: .75rem;
  color: var(--danger);
  margin-top: .25rem;
  display: none;
}

.form-group.has-error .form-control { border-color: var(--danger); }
.form-group.has-error .form-error { display: block; }

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.form-full {
  grid-column: 1 / -1;
}

/* ---------- Multi-Select States ---------- */
.state-select-container {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-height: 200px;
  overflow-y: auto;
  padding: .5rem;
  background: var(--card);
}

.state-select-container .checkbox-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .35rem;
}

/* ---------- Score Bar ---------- */
.score-bar-container {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.score-bar {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 999px;
  overflow: hidden;
  max-width: 100px;
}

.score-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .3s ease;
}

.score-bar-fill.high { background: var(--accent); }
.score-bar-fill.medium { background: var(--warning); }
.score-bar-fill.low { background: var(--danger); }

.score-value {
  font-size: .8rem;
  font-weight: 600;
  min-width: 28px;
}

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  pointer-events: none;
}

.toast {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .75rem 1.25rem;
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 280px;
  max-width: 420px;
  pointer-events: all;
  animation: toastIn .25s ease;
  transition: opacity .2s, transform .2s;
}

.toast.removing {
  opacity: 0;
  transform: translateX(30px);
}

.toast-success { border-left: 3px solid var(--accent); }
.toast-error   { border-left: 3px solid var(--danger); }
.toast-info    { border-left: 3px solid var(--info); }
.toast-warning { border-left: 3px solid var(--warning); }

.toast-icon { font-size: 1.1rem; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---------- Loading Spinner ---------- */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

.spinner-dark {
  border-color: var(--border);
  border-top-color: var(--secondary);
}

.spinner-lg {
  width: 36px;
  height: 36px;
  border-width: 3px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: .75rem;
  color: var(--subtle);
  font-size: .9rem;
}

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--subtle);
}

.empty-state svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  opacity: .4;
}

.empty-state h3 {
  color: var(--text-light);
  margin-bottom: .5rem;
}

.empty-state p {
  font-size: .875rem;
  margin-bottom: 1.25rem;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(10px);
  transition: transform .2s ease;
}

.modal-backdrop.active .modal {
  transform: translateY(0);
}

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

.modal-header h2 { font-size: 1.1rem; }

.modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--subtle);
  cursor: pointer;
  padding: .25rem;
  line-height: 1;
}
.modal-close:hover { color: var(--text); }

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* ---------- Scenario Summary ---------- */
.scenario-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.summary-item {
  padding: .75rem 0;
}

.summary-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--subtle);
  font-weight: 600;
  margin-bottom: .15rem;
}

.summary-value {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}

/* ---------- View Toggle ---------- */
.view-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.view-toggle button {
  background: var(--card);
  border: none;
  padding: .4rem .7rem;
  cursor: pointer;
  font-size: .8rem;
  color: var(--subtle);
  transition: all var(--transition);
}

.view-toggle button:not(:last-child) {
  border-right: 1px solid var(--border);
}

.view-toggle button.active {
  background: var(--primary);
  color: #fff;
}

/* ---------- Lender Cards Grid ---------- */
.lender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}

.lender-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.lender-card:hover { box-shadow: var(--shadow-md); }

.lender-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .75rem;
}

.lender-card-name {
  font-weight: 600;
  color: var(--primary);
  font-size: .95rem;
}

.lender-card-contact {
  font-size: .82rem;
  color: var(--subtle);
  margin-bottom: .75rem;
}

.lender-card-criteria {
  font-size: .78rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: .75rem;
}

.lender-card-criteria span {
  display: inline-block;
  background: var(--bg);
  padding: .15rem .5rem;
  border-radius: var(--radius-sm);
  margin: .15rem .15rem .15rem 0;
  font-size: .72rem;
}

.lender-card-actions {
  display: flex;
  gap: .5rem;
  border-top: 1px solid var(--border-light);
  padding-top: .75rem;
  margin-top: auto;
}

/* ---------- Search / Filter Bar ---------- */
.filter-bar {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-input input {
  width: 100%;
  padding: .55rem .75rem .55rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem;
  font-family: var(--font);
  background: var(--card);
}

.search-input input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(43,108,176,.12);
}

.search-input svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--subtle);
}

/* ---------- Email Preview ---------- */
.email-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
}

.email-preview .email-to {
  font-weight: 600;
  margin-bottom: .25rem;
}

.email-preview .email-subject {
  font-weight: 600;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.email-preview .email-body {
  white-space: pre-wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .top-nav {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }

  .lender-grid {
    grid-template-columns: 1fr;
  }

  .scenario-summary {
    grid-template-columns: 1fr 1fr;
  }

  .modal {
    max-width: 100%;
    margin: .5rem;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .scenario-summary {
    grid-template-columns: 1fr;
  }
}

/* ---------- Mobile Nav ---------- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: .25rem;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: .5rem 1rem 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,.15);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: .6rem .85rem;
  }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-subtle { color: var(--subtle); }
.text-sm { font-size: .82rem; }
.text-xs { font-size: .72rem; }
.text-danger { color: var(--danger); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }
.w-full { width: 100%; }
