/* ==========================================================================
   DL DIGITAL — Admin Dashboard Stylesheet
   Faithful Replication of the User's Reference Screenshot
   ========================================================================== */

:root {
  --dash-bg: #e6e9f4;
  --dash-card-bg: #ffffff;
  --dash-text-dark: #0f172a;
  --dash-text-muted: #64748b;
  --dash-text-light: #94a3b8;
  --dash-border: #f1f5f9;
  --dash-blue: #2563eb;
  --dash-indigo: #6366f1;
  --dash-coral: #f43f5e;
  --dash-cyan: #06b6d4;
  --dash-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --dash-radius: 28px;
  --dash-radius-card: 22px;
}

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

body {
  font-family: var(--dash-font);
  background-color: var(--dash-bg);
  color: var(--dash-text-dark);
  padding: 30px 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Outer Dashboard Frame matching reference */
.dash-frame {
  max-width: 1260px;
  margin: 0 auto;
  background-color: var(--dash-card-bg);
  border-radius: var(--dash-radius);
  box-shadow: 0 20px 50px -10px rgba(79, 70, 229, 0.09);
  padding: 28px 34px 36px 34px;
}

/* ==========================================================================
   Top Bar Navigation
   ========================================================================== */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.dash-welcome {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.welcome-text h1 {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--dash-text-dark);
  line-height: 1.2;
}

.welcome-text p {
  font-size: 0.82rem;
  color: var(--dash-text-light);
}

/* Top Actions */
.dash-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 16px;
  width: 260px;
  color: var(--dash-text-light);
  transition: border-color 0.2s ease, width 0.2s ease;
}

.search-box:focus-within {
  border-color: var(--dash-blue);
  background: #ffffff;
  width: 290px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--dash-font);
  font-size: 0.84rem;
  color: var(--dash-text-dark);
  width: 100%;
}

.top-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--dash-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.top-icon-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.top-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.top-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Dashboard Body Grid (Left ~68%, Right ~32%)
   ========================================================================== */
.dash-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

/* Left Column */
.dash-left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================================================
   Top Row: Profile Card + Dual Mesh Gradient Cards
   ========================================================================== */
.top-cards-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
}

/* Profile Card matching reference */
.profile-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: var(--dash-radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.card-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}

.card-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.icon-btn-ghost {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dash-text-light);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.3s ease;
}

.icon-btn-ghost:hover {
  color: var(--dash-text-dark);
  transform: rotate(180deg);
}

/* Avatar with concentric radial ring matching reference */
.profile-avatar-wrapper {
  margin-bottom: 12px;
}

.avatar-ring-container {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(#f43f5e 0% 70%, #e2e8f0 70% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-circle {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 2px solid #ffffff;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.profile-meta {
  margin-bottom: 16px;
}

.profile-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.profile-role {
  font-size: 0.76rem;
  color: var(--dash-text-light);
}

/* Profile Stat Chips matching reference "11", "56", "12" */
.profile-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.stat-pill-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.red-dot {
  color: #ef4444;
  font-size: 0.65rem;
}

/* ==========================================================================
   Dual Mesh Gradient Cards & Trackers
   ========================================================================== */
.gradient-cards-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gradient-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mesh-card {
  border-radius: var(--dash-radius-card);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 155px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.04);
}

/* Peach-Coral Mesh Gradient matching reference */
.mesh-coral {
  background: linear-gradient(135deg, #fed7aa 0%, #fecdd3 50%, #fda4af 100%);
  color: #4c0519;
}

/* Cyan-Periwinkle Mesh Gradient matching reference */
.mesh-cyan {
  background: linear-gradient(135deg, #a5f3fc 0%, #67e8f9 50%, #93c5fd 100%);
  color: #0c4a6e;
}

.mesh-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mesh-title {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.mesh-icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mesh-stat-box {
  margin-top: 14px;
}

.mesh-big-stat {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.mesh-subtext {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
}

/* Trackers Connected Strip matching reference */
.trackers-card {
  background: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trackers-left h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.trackers-left p {
  font-size: 0.74rem;
  color: var(--dash-text-light);
}

.trackers-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tracker-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tracker-badge.meta { background: #0081fb; }
.tracker-badge.slack { background: #4a154b; }
.tracker-badge.more { background: #e2e8f0; color: #64748b; font-size: 0.6rem; }

/* ==========================================================================
   Middle Section: Lead Flow & Productivity Spline Chart
   ========================================================================== */
.chart-section-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: var(--dash-radius-card);
  padding: 22px 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.chart-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.chart-subtitle {
  font-size: 0.76rem;
  color: var(--dash-text-light);
}

.chart-filter-select select {
  font-family: var(--dash-font);
  font-size: 0.8rem;
  font-weight: 600;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--dash-text-dark);
  outline: none;
  cursor: pointer;
}

/* Chart Body with Month Rail + SVG */
.chart-body-wrapper {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
}

/* Vertical Month Rail matching reference */
.month-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rail-arrow {
  font-size: 0.75rem;
  color: var(--dash-text-light);
}

.rail-btn {
  background: transparent;
  border: none;
  font-family: var(--dash-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dash-text-light);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.rail-btn.active {
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  padding: 4px 10px;
}

/* Canvas Box & Spline */
.chart-canvas-box {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 0;
}

.chart-peak-pill {
  position: absolute;
  top: 14px;
  left: 36%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  z-index: 5;
}

.chart-peak-pill strong {
  color: var(--dash-text-dark);
}

.chart-peak-pill span {
  color: var(--dash-text-light);
  font-size: 0.68rem;
}

.spline-svg {
  width: 100%;
  height: 180px;
  overflow: visible;
}

/* Chart Footer Row matching reference */
.chart-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f8fafc;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dash-text-muted);
}

.legend-square {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.legend-square.coral { background-color: #f43f5e; }
.legend-square.purple { background-color: #6366f1; }

.chart-stat-right {
  text-align: right;
}

.big-percent {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dash-text-dark);
  line-height: 1;
}

.percent-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--dash-text-light);
  margin-top: 2px;
}

/* ==========================================================================
   Bottom Leads Management Table
   ========================================================================== */
.leads-table-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: var(--dash-radius-card);
  padding: 22px;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tabs {
  display: flex;
  gap: 6px;
  background: #f8fafc;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--dash-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dash-text-muted);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active {
  background: #ffffff;
  color: var(--dash-text-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-action-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-family: var(--dash-font);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.table-responsive {
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.leads-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--dash-text-light);
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.leads-table td {
  padding: 14px;
  font-size: 0.86rem;
  border-bottom: 1px solid #f8fafc;
  vertical-align: middle;
}

.client-name-cell {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 700;
  color: var(--dash-text-dark);
}

.client-biz {
  font-size: 0.76rem;
  color: var(--dash-text-light);
}

.badge-status {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.badge-status.new { background: #dbeafe; color: #1e40af; }
.badge-status.contacted { background: #fef3c7; color: #92400e; }
.badge-status.booked { background: #d1fae5; color: #065f46; }
.badge-status.audit { background: #ede9fe; color: #5b21b6; }

.table-action-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.btn-sm-ghost {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm-ghost:hover {
  background: #f1f5f9;
}

.btn-sm-delete {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #fee2e2;
  background: #fff5f5;
  color: #ef4444;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm-delete:hover {
  background: #fecaca;
}

.table-empty-state {
  text-align: center;
  padding: 36px 0;
  color: var(--dash-text-light);
  font-size: 0.88rem;
}

/* ==========================================================================
   RIGHT COLUMN: Meetings Schedule & Service Demand Breakdown
   ========================================================================== */
.dash-right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid #f1f5f9;
  padding-left: 20px;
}

/* Meetings Card matching reference */
.meetings-card {
  display: flex;
  flex-direction: column;
}

.meetings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.meetings-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.calendar-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--dash-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-btn:hover {
  background: #f8fafc;
}

.meetings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meeting-item {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f8fafc;
}

.m-time-col {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.m-day {
  font-size: 0.74rem;
  color: var(--dash-text-light);
}

.m-hour {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.m-title-col {
  display: flex;
  flex-direction: column;
}

.m-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--dash-text-dark);
  line-height: 1.2;
}

.m-platform {
  font-size: 0.74rem;
  color: var(--dash-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.m-arrow-btn {
  background: transparent;
  border: none;
  font-size: 0.95rem;
  color: var(--dash-text-dark);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.m-arrow-btn:hover {
  transform: translate(2px, -2px);
}

.meetings-footer {
  margin-top: 14px;
}

.see-all-btn {
  background: transparent;
  border: none;
  font-family: var(--dash-font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dash-text-light);
  cursor: pointer;
  transition: color 0.2s ease;
}

.see-all-btn:hover {
  color: var(--dash-text-dark);
}

/* Developed Areas Card matching reference */
.developed-areas-card {
  display: flex;
  flex-direction: column;
}

.areas-header {
  margin-bottom: 18px;
}

.areas-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dash-text-dark);
}

.areas-header p {
  font-size: 0.74rem;
  color: var(--dash-text-light);
}

.service-bars-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 34px 18px;
  gap: 10px;
  align-items: center;
}

.s-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dash-text-dark);
  white-space: nowrap;
}

.s-bar-track {
  height: 6px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.s-bar-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 999px;
}

.s-pct {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dash-text-dark);
  text-align: right;
}

.s-trend {
  font-size: 0.75rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s-trend.up {
  color: #2563eb;
  background: #eff6ff;
}

.s-trend.down {
  color: #f97316;
  background: #fff7ed;
}

/* Quick Action Box */
.quick-action-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 16px;
}

.quick-action-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.quick-action-box p {
  font-size: 0.75rem;
  color: var(--dash-text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.btn-quick-test {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.admin-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal-overlay.active {
  display: flex;
}

.admin-modal-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
}

.modal-head {
  margin-bottom: 20px;
}

.modal-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-head p {
  font-size: 0.82rem;
  color: var(--dash-text-light);
}

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

.f-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.f-group label {
  font-size: 0.8rem;
  font-weight: 600;
}

.f-group input,
.f-group select,
.f-group textarea {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--dash-font);
  font-size: 0.86rem;
  outline: none;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: #2563eb;
}

.btn-modal-submit {
  width: 100%;
  padding: 12px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 10px;
}

/* Detail Modal Content */
.detail-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.detail-row {
  margin-bottom: 14px;
}

.detail-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dash-text-light);
  margin-bottom: 4px;
}

.detail-row p {
  font-size: 0.92rem;
  color: var(--dash-text-dark);
}

.detail-status-changer {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1080px) {
  .dash-body-grid {
    grid-template-columns: 1fr;
  }
  .dash-right-col {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .dash-frame {
    padding: 18px;
    border-radius: 20px;
  }
  .top-cards-row {
    grid-template-columns: 1fr;
  }
  .gradient-pair-row {
    grid-template-columns: 1fr;
  }
  .dash-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .search-box {
    width: 100%;
  }
}
