/* =====================================================================
   ESTILOS POWER BI DASHBOARD REPLICA EXACTA
===================================================================== */
:root {
  --pbi-blue-header:  #0055A5;
  --pbi-dark-header:  #505050;
  --pbi-bg:           #EFEFEF;
  --pbi-card-bg:      #FFFFFF;
  --pbi-border:       #D1D1D1;
  --pbi-text:         #000000;
  --pbi-muted:        #605E5C;

  --font-ui:   'Segoe UI', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', Consolas, monospace;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--pbi-bg);
  color: var(--pbi-text);
  -webkit-font-smoothing: antialiased;
}

.app-shell { min-height: 100vh; display: flex; flex-direction: column; }

/* ---------------------------------------------------------------------
   HEADER & SLICERS SUPERIORES (ESTILO POWER BI)
--------------------------------------------------------------------- */
.app-header {
  background: #FFFFFF;
  border-bottom: 2px solid #D1D1D1;
  padding: 8px 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------------------------------------------------------------------
   SPLASH SCREEN & LOGO ANIMADO CREDIBROKER
--------------------------------------------------------------------- */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #041221 0%, #003366 50%, #001e3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: splashFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-logo-wrapper {
  background: #ffffff;
  padding: 20px 36px;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 128, 255, 0.35);
  margin-bottom: 28px;
  animation: logoPulse 2.2s infinite ease-in-out;
}

.splash-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

.splash-loader {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.splash-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.splash-progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #0080FF, #00E5FF);
  border-radius: 4px;
  position: absolute;
  left: -40%;
  animation: splashLoading 1.5s infinite ease-in-out;
}

.splash-letter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 24px;
}

.splash-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px) scale(0.7);
  animation: charPopIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  color: #FFFFFF;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  white-space: pre;
}

@keyframes charPopIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes logoPulse {
  0% { transform: scale(1); box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 0 25px rgba(0,128,255,0.35); }
  50% { transform: scale(1.03); box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 40px rgba(0,128,255,0.65); }
  100% { transform: scale(1); box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 0 25px rgba(0,128,255,0.35); }
}

@keyframes splashLoading {
  0% { left: -40%; width: 30%; }
  50% { left: 40%; width: 50%; }
  100% { left: 100%; width: 30%; }
}

.brand-logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.main-title {
  margin: 1px 0 0 0;
  font-size: 10.5px;
  font-weight: 800;
  color: #003366;
  border-left: none;
  padding-left: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: left;
}

/* Slicers superiores en una sola línea horizontal */
.header-slicers {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.slicer-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.slicer-column-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.slicer-column-stacked .slicer-field {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
}

.slicer-field {
  display: flex;
  align-items: center;
  gap: 5px;
}

.slicer-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--pbi-muted);
  white-space: nowrap;
}

.slicer-select {
  padding: 3px 5px;
  border: 1px solid var(--pbi-border);
  border-radius: 2px;
  font-size: 11px;
  background: #FFF;
  color: var(--pbi-text);
  width: 105px;
  max-width: 105px;
}

/* Caja de Slicer Visible con Scroll (Producto & Contagio más ancho y alto) */
.slicer-box-panel {
  border: 1px solid var(--pbi-border);
  border-radius: 2px;
  background: #FFFFFF;
  width: 220px;
  height: 84px;
  display: flex;
  flex-direction: column;
}

.slicer-box-title {
  font-size: 10px;
  font-weight: 700;
  color: #252423;
  padding: 3px 6px;
  background: #F3F2F1;
  border-bottom: 1px solid #E1DFDD;
  line-height: 1.1;
}

.slicer-box-content {
  padding: 3px 6px;
  flex: 1;
  max-height: 64px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
  padding: 2px 5px;
  background: #F3F2F1;
  border-bottom: 1px solid #E1DFDD;
  line-height: 1.1;
}

.slicer-box-content {
  padding: 2px 4px;
  flex: 1;
  max-height: 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.slicer-checkbox-item {
  font-size: 10.5px;
  color: #323130;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.slicer-checkbox-item input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}

.slicer-checkbox-item.label-all {
  font-weight: 600;
  border-bottom: 1px dashed #E1DFDD;
  padding-bottom: 2px;
  margin-bottom: 2px;
}

/* Acciones de Header */
.header-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.btn {
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid var(--pbi-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all .15s;
}

.btn-export-raw {
  background: linear-gradient(135deg, #107C41 0%, #1F9A55 100%);
  color: #FFFFFF;
  border-color: #107C41;
  box-shadow: 0 1px 3px rgba(16, 124, 65, 0.3);
}
.btn-export-raw:hover {
  background: linear-gradient(135deg, #0B5C30 0%, #157A42 100%);
  box-shadow: 0 2px 6px rgba(16, 124, 65, 0.4);
}

.btn-export-dashboard {
  background: linear-gradient(135deg, #0055A5 0%, #0078D4 100%);
  color: #FFFFFF;
  border-color: #0055A5;
  box-shadow: 0 1px 3px rgba(0, 85, 165, 0.3);
}
.btn-export-dashboard:hover {
  background: linear-gradient(135deg, #00407D 0%, #005A9E 100%);
  box-shadow: 0 2px 6px rgba(0, 85, 165, 0.4);
}

.btn-reset {
  background: #F3F2F1;
  color: #323130;
}
.btn-reset:hover { background: #E1DFDD; }

.btn-mini {
  padding: 2px 6px;
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  cursor: pointer;
}
.btn-mini:hover { background: rgba(255,255,255,0.35); }

/* Filtros Activos Pill */
.active-filters-bar {
  background: #E1DFDD;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
}

/* ---------------------------------------------------------------------
   BARRA DE PESTAÑAS ESTILO GOOGLE CHROME / POWER BI
--------------------------------------------------------------------- */
.chrome-tab-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #E1DFDD;
  padding: 4px 16px 0 16px;
  border-bottom: 2px solid #0055A5;
}

.chrome-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #444444;
  background: #D2D0CE;
  border: 1px solid #C8C6C4;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  top: 1px;
}

.chrome-tab:hover {
  background: #E8E8E8;
  color: #000000;
}

.chrome-tab.active {
  background: #FFFFFF;
  color: #003366;
  font-weight: 700;
  border-color: #0055A5;
  border-bottom: 2px solid #FFFFFF;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.08);
}

.chrome-tab svg {
  color: inherit;
  flex-shrink: 0;
}

.active-filters-label { font-weight: 600; color: #323130; }

.filter-pill {
  background: #0078D4;
  color: #FFF;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.filter-pill button {
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
}

/* Chips dinámicos: Precalificado, Edad, TipoCliente */
.filtro-chip {
  background: #107C41;
  color: #FFF;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: chipIn 0.18s ease;
}
.filtro-chip .chip-label { font-weight: 600; }
.filtro-chip .chip-quitar {
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
}
@keyframes chipIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* Cursor pointer en filas de tablas al pasar mouse */
.tabulator-row { cursor: pointer !important; }
.tabulator-row:hover .tabulator-cell { background: #E8F4FF !important; }

/* ---------------------------------------------------------------------
   GRID PRINCIPAL (4 PÁNELES POWER BI)
--------------------------------------------------------------------- */
.pbi-grid {
  display: grid;
  grid-template-columns: fit-content(600px) 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 10px 16px 20px;
  justify-content: center;
  align-items: start;
}

.pbi-panel {
  background: #FFFFFF;
  border: 1px solid #D1D1D1;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: fit-content !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Paneles de tabla: se ajustan al ancho exacto de sus columnas */
.pbi-panel.panel-depto,
.pbi-panel.panel-tipo-cliente {
  width: fit-content !important;
}

/* Paneles de gráficos: ancho completo de la columna derecha */
.pbi-panel.panel-precalificado,
.pbi-panel.panel-edades {
  width: 100%;
}






.pbi-panel-header {
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pbi-panel-header h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.header-blue {
  background: var(--pbi-blue-header);
  color: #FFFFFF;
}

.header-dark {
  background: var(--pbi-dark-header);
  color: #FFFFFF;
}

.header-default {
  background: #F3F2F1;
  color: #252423;
  border-bottom: 1px solid #E1DFDD;
}

.chart-wrapper {
  padding: 0;
  height: 260px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.chart-wrapper > div { width: 100%; height: 100%; }



/* ---------------------------------------------------------------------
   TABULATOR MATRIX VISUAL POWER BI - REPLICA ULTRA COMPACTA DE LA IMAGEN
--------------------------------------------------------------------- */
.tabulator-pbi {
  height: 262px;
  border: none;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 8.5px;
  background: #FFFFFF !important;
  margin: 0 !important;
  padding: 0 !important;
}


.tabulator,
.tabulator-tableholder,
.tabulator-table {
  background: #FFFFFF !important;
}

/* Eliminar espacio vacío entre último registro y totales */
.tabulator-tableholder {
  overflow-y: auto !important;
}

/* Asegurar que la fila de totales esté siempre visible y pegada al contenido */
.tabulator-footer {
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pbi-panel-header {
  padding: 2px 6px;
}

.pbi-panel-header h2 {
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #000000;
}

/* Encabezados de Tabla */
.panel-depto .tabulator-header {
  background: #0055A5 !important;
  color: #FFFFFF !important;
  font-weight: 700;
}
.panel-depto .tabulator-col {
  background: #0055A5 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
  height: 16px !important;
}

.panel-tipo-cliente .tabulator-header {
  background: #4A4A4A !important;
  color: #FFFFFF !important;
  font-weight: 700;
}
.panel-tipo-cliente .tabulator-col {
  background: #4A4A4A !important;
  border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
  height: 16px !important;
}

.tabulator .tabulator-col-title {
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 8.5px;
  line-height: 15px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
  padding: 0px 2px !important;
}

/* Filas de Datos Ultra Compactas (13.5px de alto) */
.tabulator-row {
  background: #FFFFFF !important;
  border-bottom: 1px solid #E5E5E5;
  min-height: 13.5px !important;
  height: 13.5px !important;
}
.tabulator-row.tabulator-row-even {
  background: #FFFFFF !important;
}
.tabulator-row:hover {
  background: #F3F2F1 !important;
}

.tabulator-cell {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 8.5px;
  color: #000000;
  padding: 0px 2px !important;
  line-height: 13.5px;
  border-right: 1px solid #E5E5E5;
  background: #FFFFFF !important;
}

.tabulator-cell.num-cell {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 8.5px;
  font-weight: 700;
  color: #000000;
  text-align: right;
  background: #FFFFFF !important;
}

/* Ocultar flecha por defecto de Tabulator */
.tabulator-row.tabulator-group .tabulator-group-toggle {
  display: none !important;
}
.tabulator-row.tabulator-group .tabulator-group-title {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Encabezados de Grupo (Fondo gris #EFEFEF, 13.5px alto) */
.tabulator-row.tabulator-group {
  background: #EFEFEF !important;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 !important;
  min-height: 13.5px !important;
  height: 13.5px !important;
  cursor: pointer;
}
.tabulator-row.tabulator-group:hover {
  background: #E5E5E5 !important;
}

.pbi-group-header-row {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 8.5px;
  line-height: 13.5px;
  height: 13.5px;
  background: #EFEFEF !important;
}

.pbi-group-col {
  box-sizing: border-box;
  padding: 0px 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-right: 1px solid #E0E0E0;
  height: 13.5px;
  display: flex;
  align-items: center;
}

.pbi-panel.panel-depto,
.pbi-panel.panel-tipo-cliente {
  width: fit-content !important;
  max-width: 100% !important;
}

.pbi-group-col.col-title {
  width: 130px !important;
  min-width: 130px !important;
  max-width: 130px !important;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-title-text {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #000000 !important;
  font-size: 8.5px;
}

.pbi-group-col.col-num-00 {
  width: 65px !important;
  min-width: 65px !important;
  max-width: 65px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-col.col-num-130 {
  width: 65px !important;
  min-width: 65px !important;
  max-width: 65px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-col.col-num-3160 {
  width: 65px !important;
  min-width: 65px !important;
  max-width: 65px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-col.col-num-6190 {
  width: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-col.col-num-mas90 {
  width: 65px !important;
  min-width: 65px !important;
  max-width: 65px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #000000 !important;
}

.pbi-group-col.col-num-total {
  width: 75px !important;
  min-width: 75px !important;
  max-width: 75px !important;
  justify-content: flex-end;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: #000000 !important;
}

/* Icono [ + ] / [ - ] Mini Box (11px) */
.pbi-box-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #4A4A4A !important;
  background: #FFFFFF !important;
  color: #333333 !important;
  font-size: 9px !important;
  font-family: 'Segoe UI', Arial, sans-serif !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  border-radius: 2px !important;
  margin-right: 6px !important;
  flex-shrink: 0 !important;
}

/* Fila de Totales Generales al pie */
.tabulator-calcs-bottom {
  background: #FFFFFF !important;
  border-top: 2px solid #0055A5 !important;
  font-weight: 800 !important;
  color: #000000 !important;
  min-height: 16px !important;
  height: 16px !important;
  display: block !important;
  visibility: visible !important;
  overflow: hidden;
}
.tabulator-calcs-bottom .tabulator-row {
  background: #FFFFFF !important;
  border-top: 2px solid #0055A5 !important;
  min-height: 16px !important;
  height: 16px !important;
}
.tabulator-calcs-bottom .tabulator-cell {
  font-family: 'Segoe UI', Arial, sans-serif !important;
  font-variant-numeric: tabular-nums !important;
  font-size: 8.5px !important;
  font-weight: 800 !important;
  color: #000000 !important;
  padding: 0px 2px !important;
  border-right: 1px solid #D9D9D9 !important;
  background: #FFFFFF !important;
  line-height: 16px !important;
}

/* ---------------------------------------------------------------------
   MODAL DE DETALLE DE CLIENTES (DOBLE CLIC)
--------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-card {
  background: #ffffff;
  width: 92%;
  max-width: 980px;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  background: #003366;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.modal-subtitle {
  margin: 2px 0 0 0;
  font-size: 11.5px;
  color: #D0E4FF;
}

.modal-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}

.modal-body {
  padding: 16px 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-search-input {
  flex: 1;
  padding: 7px 12px;
  font-size: 12px;
  border: 1px solid var(--pbi-border);
  border-radius: 4px;
  outline: none;
}

.modal-search-input:focus {
  border-color: #0078D4;
  box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.2);
}

.modal-footer {
  background: #F3F2F1;
  padding: 10px 20px;
  border-top: 1px solid var(--pbi-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-record-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--pbi-muted);
}

/* Responsividad */
@media (max-width: 1024px) {
  .pbi-grid { grid-template-columns: 1fr; }
}
