/* ============================================================
   ConnecTeam Dashboard — Light Premium SaaS Theme
   Inspired by: Stripe, Linear, Vercel dashboards
   ============================================================ */

/* --- Google Fonts: Inter --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-page:        #f8fafc;
  --bg-card:        #ffffff;
  --bg-sidebar:     #ffffff;
  --bg-active:      #f1f5f9;
  --bg-hover:       #f8fafc;

  --border:         rgba(0, 0, 0, 0.06);
  --border-strong:  rgba(0, 0, 0, 0.10);

  --text-primary:   #0f172a;
  --text-secondary: #64748b;
  --text-muted:     #94a3b8;

  --accent:         #3b82f6;
  --accent-light:   #eff6ff;
  --accent-hover:   #2563eb;

  --success:        #22c55e;
  --success-light:  #f0fdf4;
  --warning:        #f59e0b;
  --warning-light:  #fffbeb;
  --danger:         #ef4444;
  --danger-light:   #fef2f2;

  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;

  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:      0 10px 30px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);

  --sidebar-width:  240px;
  --header-height:  60px;
  --transition:     150ms ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ============================================================
   Layout
   ============================================================ */

.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* --- Sidebar --- */
.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: width var(--transition);
  overflow: hidden;
}

.sidebar.collapsed {
  width: 64px;
}

.sidebar-logo {
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

.sidebar-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sidebar-logo .logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: opacity var(--transition);
}

.sidebar.collapsed .logo-text { opacity: 0; pointer-events: none; }

.sidebar-nav {
  flex: 1;
  padding: 12px 8px;
  list-style: none;
  margin: 0;
}

.sidebar-nav li { margin-bottom: 2px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-nav a:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.sidebar-nav a.active {
  background: var(--accent-light);
  color: var(--accent);
}

.sidebar-nav a .nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
}

.sidebar-nav a .nav-label {
  transition: opacity var(--transition);
}

.sidebar.collapsed .nav-label { opacity: 0; }

.sidebar-footer {
  padding: 12px 8px;
  border-top: 1px solid var(--border);
}

.sidebar-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-toggle:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.sidebar.collapsed .sidebar-toggle-label { opacity: 0; }

/* --- Main Content --- */
.main-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
.topbar {
  height: var(--header-height);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Date presets */
.date-presets {
  display: flex;
  align-items: center;
  gap: 4px;
}

.preset-btn {
  height: 28px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

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

.preset-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Date range picker */
.date-range-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 10px;
  height: 32px;
  cursor: pointer;
}

.date-range-picker:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.date-range-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.date-range-picker input[type="text"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-family: inherit;
  color: var(--text-primary);
  width: 190px;
  cursor: pointer;
}

/* Flatpickr theme overrides */
.flatpickr-calendar {
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 4px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--accent);
  border-color: var(--accent);
}

.flatpickr-day.inRange {
  background: rgba(59,130,246,0.1);
  border-color: transparent;
  box-shadow: none;
}

.flatpickr-day:hover {
  background: var(--bg-secondary);
}

.flatpickr-months .flatpickr-month,
.flatpickr-weekdays {
  background: transparent;
}

.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: inherit;
}

.sync-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.sync-dot.syncing {
  background: var(--warning);
  animation: pulse 1s infinite;
}

.sync-dot.error {
  background: var(--danger);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Page Body --- */
.page-body {
  flex: 1;
  padding: 28px;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

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

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

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

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

.btn-sm {
  padding: 5px 11px;
  font-size: 12px;
}

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

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-body {
  padding: 20px;
}

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

.card-header-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================================
   KPI Cards
   ============================================================ */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.kpi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  border-color: var(--accent);
}

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

.kpi-card-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-icon-blue   { background: var(--accent-light); color: var(--accent); }
.kpi-icon-green  { background: var(--success-light); color: var(--success); }
.kpi-icon-yellow { background: var(--warning-light); color: var(--warning); }
.kpi-icon-red    { background: var(--danger-light); color: var(--danger); }

.kpi-card-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.kpi-card-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   Charts Row
   ============================================================ */

.chart-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-bottom: 24px;
}

.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.chart-card-header {
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.chart-card-body {
  padding: 16px 20px 20px;
  position: relative;
}

/* ============================================================
   Tables
   ============================================================ */

.table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.table-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ct-table thead th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.ct-table tbody tr {
  transition: background var(--transition);
  cursor: pointer;
}

.ct-table tbody tr:hover {
  background: var(--bg-hover);
}

.ct-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.015);
}

.ct-table tbody tr:nth-child(even):hover {
  background: var(--bg-hover);
}

.ct-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  vertical-align: middle;
}

.ct-table tbody tr:last-child td {
  border-bottom: none;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}

.rank-1 { background: #fef3c7; color: #92400e; }
.rank-2 { background: #f1f5f9; color: #475569; }
.rank-3 { background: #fef3c7; color: #78350f; }
.rank-n { background: var(--bg-hover); color: var(--text-secondary); }

/* ============================================================
   Status badges
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-success { background: var(--success-light); color: #166534; }
.badge-warning { background: var(--warning-light); color: #92400e; }
.badge-danger  { background: var(--danger-light);  color: #991b1b; }
.badge-info    { background: var(--accent-light);  color: #1d4ed8; }
.badge-muted   { background: var(--bg-hover);      color: var(--text-secondary); }

/* ============================================================
   Modals
   ============================================================ */

.modal-content {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

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

.modal-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.modal-body {
  padding: 0;
  max-height: 65vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-page);
}

.modal-footer-count {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Override Bootstrap modal backdrop */
.modal-backdrop {
  backdrop-filter: blur(3px);
  background: rgba(15, 23, 42, 0.4);
}

/* Modal open animation */
.modal.fade .modal-dialog {
  transform: scale(0.97) translateY(8px);
  transition: transform 200ms ease, opacity 200ms ease;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* ============================================================
   Sync Status Card
   ============================================================ */

.sync-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sync-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sync-info-text .sync-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.sync-info-text .sync-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.sync-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================================
   Loading states (skeleton)
   ============================================================ */

.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-wave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-value {
  height: 36px;
  width: 80px;
  margin-bottom: 4px;
}

/* Spinner overlay */
.spinner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  z-index: 10;
}

.spinner-ring {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ============================================================
   Week selector
   ============================================================ */

.week-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.week-selector .week-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.week-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

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

/* ============================================================
   Utility
   ============================================================ */

.text-muted   { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-primary { color: var(--text-primary); }
.text-accent  { color: var(--accent); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger  { color: var(--danger); }

.fw-semibold { font-weight: 600; }
.fw-medium   { font-weight: 500; }

.section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .kpi-grid   { grid-template-columns: repeat(2, 1fr); }
  .chart-grid { grid-template-columns: 1fr; }
  .table-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .page-body { padding: 16px; }
  .topbar { padding: 0 16px; }
}

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

/* ============================================================
   Log page specifics
   ============================================================ */

.log-level-info    { color: var(--accent); }
.log-level-warning { color: var(--warning); }
.log-level-error   { color: var(--danger); }

.log-expand-row td {
  background: var(--bg-page);
  padding: 0 !important;
}

.log-payload {
  padding: 12px 20px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 300px;
  overflow-y: auto;
}

/* ============================================================
   DataTables overrides
   ============================================================ */

.dt-top {
  padding: 10px 10px 5px;
}

.dt-top input[type="search"] {
  height: 32px;
  padding: 0 10px;
  font-size: 12px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  width: 220px;
}

.dt-top input[type="search"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.dt-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 10px;
  font-size: 12px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 8px;
}

.dataTables_length select {
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
}

.dataTables_wrapper .pagination {
  gap: 3px;
  flex-wrap: wrap;
}

.dataTables_wrapper .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  font-size: 12px;
  font-family: inherit;
  line-height: 1;
  border: 1px solid var(--border);
  border-radius: 6px !important;
  color: var(--text-secondary);
  background: var(--bg-primary);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  box-shadow: none !important;
}

.dataTables_wrapper .page-link:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border);
}

.dataTables_wrapper .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.dataTables_wrapper .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
  background: var(--bg-primary);
  color: var(--text-muted);
  border-color: var(--border);
  cursor: default;
}

table.dataTable thead th {
  border-bottom: 1px solid var(--border) !important;
}

table.dataTable.no-footer {
  border-bottom: none;
}

/* ============================================================
   GHL Agent Intelligence Section
   ============================================================ */

/* 5-column KPI grid for GHL */
.ghl-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* 3-column chart grid: donuts + compliance */
.ghl-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

/* Compliance card inner layout */
.ghl-compliance-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.ghl-compliance-stat {
  text-align: center;
}

.ghl-compliance-pct {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.ghl-compliance-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Responsive: collapse to 2-col on medium screens */
@media (max-width: 1200px) {
  .ghl-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
  .ghl-kpi-grid  { grid-template-columns: repeat(2, 1fr); }
  .ghl-chart-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ghl-kpi-grid { grid-template-columns: 1fr 1fr; }
}

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