/* ═══════════════════════════════════════════════
   Just A Dad CRM — Admin Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --navy:       #0f1f2e;
  --navy-light: #1a3347;
  --navy-dark:  #080f16;
  --amber:      #f5a623;
  --amber-lt:   #fdc96b;
  --blue:       #3aa8e0;
  --white:      #ffffff;
  --gray-50:    #f8f9fa;
  --gray-100:   #f0f2f5;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --green:      #22c55e;
  --red:        #ef4444;
  --orange:     #f97316;
  --purple:     #8b5cf6;

  --sidebar-w:  260px;
  --topbar-h:   64px;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

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

html { font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--gray-100);
  color: var(--gray-800);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── SIDEBAR ─── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 100;
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.sidebar-brand-name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.sidebar-brand-sub {
  display: block;
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  position: relative;
  border-radius: 0;
}

.nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.nav-item.active {
  background: rgba(245,166,35,0.15);
  color: var(--amber);
  border-right: 3px solid var(--amber);
}

.nav-icon { font-size: 18px; width: 24px; text-align: center; }
.nav-label { flex: 1; }

.nav-badge {
  background: var(--amber);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.nav-badge--red { background: var(--red); color: white; }
.nav-badge:empty { display: none; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.user-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}

.user-name {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.user-email {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.logout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}

.logout-btn:hover {
  background: rgba(239,68,68,0.2);
  color: var(--red);
}

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

/* ─── TOPBAR ─── */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}

.topbar-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--gray-600);
  padding: 4px;
}

.topbar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--navy);
  flex: 1;
}

.topbar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ─── PAGE CONTENT ─── */
.page-content {
  flex: 1;
  padding: 24px;
  padding-bottom: 80px;
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--navy);
}

.card-body { padding: 20px; }

/* ─── STAT CARDS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1;
}

.stat-value--amber { color: var(--amber); }
.stat-value--green { color: var(--green); }
.stat-value--blue  { color: var(--blue); }

.stat-sub {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ─── TABLES ─── */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  border-bottom: 2px solid var(--gray-100);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
  cursor: pointer;
}

tbody tr:hover { background: var(--gray-50); }
tbody tr:last-child { border-bottom: none; }

td {
  padding: 14px 16px;
  vertical-align: middle;
}

/* ─── BADGES / STATUS ─── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge--new       { background: rgba(58,168,224,0.15);  color: var(--blue); }
.badge--contacted { background: rgba(139,92,246,0.15);  color: var(--purple); }
.badge--quoted    { background: rgba(245,166,35,0.15);  color: #d97706; }
.badge--booked    { background: rgba(34,197,94,0.15);   color: #16a34a; }
.badge--lost      { background: rgba(239,68,68,0.15);   color: var(--red); }
.badge--scheduled { background: rgba(58,168,224,0.15);  color: var(--blue); }
.badge--progress  { background: rgba(245,166,35,0.15);  color: #d97706; }
.badge--complete  { background: rgba(34,197,94,0.15);   color: #16a34a; }
.badge--invoiced  { background: rgba(139,92,246,0.15);  color: var(--purple); }
.badge--paid      { background: rgba(34,197,94,0.15);   color: #16a34a; }
.badge--draft     { background: rgba(148,163,184,0.2);  color: var(--gray-600); }
.badge--sent      { background: rgba(58,168,224,0.15);  color: var(--blue); }
.badge--accepted  { background: rgba(34,197,94,0.15);   color: #16a34a; }
.badge--expired   { background: rgba(239,68,68,0.15);   color: var(--red); }
.badge--overdue   { background: rgba(239,68,68,0.15);   color: var(--red); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--amber);
  color: var(--navy);
}
.btn--primary:hover { background: var(--amber-lt); transform: translateY(-1px); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-light); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover { border-color: var(--navy); }

.btn--ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 8px 12px;
}
.btn--ghost:hover { background: var(--gray-100); color: var(--navy); }

.btn--danger {
  background: var(--red);
  color: white;
}
.btn--danger:hover { opacity: 0.9; }

.btn--green { background: var(--green); color: white; }
.btn--sm { padding: 6px 12px; font-size: 12px; }
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* ─── FORMS ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.search-input-wrap {
  flex: 1;
  position: relative;
}

.search-input-wrap::before {
  content: '🔍';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus { border-color: var(--amber); }

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 201;
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open, .modal.open { display: block; }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--navy);
}

.modal-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--gray-400);
  padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--red); }

.modal-body { padding: 20px 24px 24px; }

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
}

/* ─── TOAST ─── */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: toastIn 0.3s ease;
  min-width: 220px;
}

.toast--success { background: var(--green); color: white; }
.toast--error   { background: var(--red); color: white; }
.toast--info    { background: var(--navy); color: white; }

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

/* ─── EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gray-600); margin-bottom: 8px; }
.empty-state-text { font-size: 14px; margin-bottom: 20px; }

/* ─── LOADING ─── */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--gray-400);
  font-size: 14px;
  gap: 10px;
}

.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ─── FILTER TABS ─── */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--radius-sm);
  width: fit-content;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray-600);
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

/* ─── DETAIL PANEL ─── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-item label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.detail-item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
}

/* ─── PHOTO UPLOAD ─── */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.photo-upload-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.photo-upload-zone:hover {
  border-color: var(--amber);
  background: rgba(245,166,35,0.05);
}

.photo-upload-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ─── CALENDAR ─── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-header {
  text-align: center;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-400);
}

.cal-day {
  min-height: 80px;
  padding: 6px;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  transition: background 0.15s;
}

.cal-day:hover { background: var(--gray-50); }
.cal-day--today { border-color: var(--amber); background: rgba(245,166,35,0.05); }
.cal-day--other-month { opacity: 0.4; }

.cal-date {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.cal-date--today {
  background: var(--amber);
  color: var(--navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-job-dot {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

/* ─── QUOTE/INVOICE BUILDER ─── */
.line-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.line-items-table th {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 8px;
  text-align: left;
  border-bottom: 2px solid var(--gray-100);
}

.line-items-table td {
  padding: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.line-item-input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.totals-box {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: right;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
}

.totals-row--total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--navy);
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 8px;
}

/* ─── ROUTE MAP ─── */
.route-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 20px;
  height: calc(100vh - 130px);
}

.route-list { overflow-y: auto; }
.route-map { border-radius: var(--radius); overflow: hidden; }
.route-map iframe { width: 100%; height: 100%; border: none; }

.route-job-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background 0.15s;
}

.route-job-card:hover { background: var(--gray-50); }

.route-job-number {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── MOBILE BOTTOM NAV ─── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  z-index: 100;
  padding: 0 0 env(safe-area-inset-bottom);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  gap: 3px;
  transition: color 0.2s;
}

.bottom-nav-item span:first-child { font-size: 20px; }
.bottom-nav-item.active { color: var(--amber); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .route-container { grid-template-columns: 1fr; }
  .route-map { height: 300px; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main {
    margin-left: 0;
  }

  .topbar-menu-btn { display: flex; }
  .bottom-nav { display: flex; }

  .page-content {
    padding: 16px;
    padding-bottom: 100px;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(7, 1fr); }
  .cal-day { min-height: 50px; }
  .cal-job-dot { display: none; }
  .cal-day.has-jobs::after { content: '•'; color: var(--amber); font-size: 18px; display: block; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ─── UTILITIES ─── */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-400); font-size: 13px; }
.text-success { color: var(--green); }
.text-danger { color: var(--red); }
.text-amber { color: var(--amber); }
.font-mono { font-family: monospace; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.divider { height: 1px; background: var(--gray-100); margin: 16px 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fw-bold { font-weight: 800; }
.w-full { width: 100%; }
