/* ============================================================
   Y CARE CRM — CSS Principal
   ============================================================ */

:root {
  --bg-app:       #f0f4f9;
  --bg-sidebar:   #071827;
  --bg-card:      #ffffff;
  --bg-topbar:    #ffffff;
  --bg-input:     #f5f8fc;
  --bg-hover:     rgba(47,134,255,.08);
  --bg-active:    rgba(47,134,255,.14);

  --text-primary:   #071827;
  --text-secondary: #4b5c6b;
  --text-muted:     #8da0b0;
  --text-sidebar:   rgba(255,255,255,.85);
  --text-sidebar-m: rgba(255,255,255,.45);

  --accent:       #2f86ff;
  --accent-dark:  #1a6de0;
  --accent-light: rgba(47,134,255,.12);

  --success:      #22c55e;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --info:         #06b6d4;

  --border:       rgba(0,0,0,.08);
  --border-strong:rgba(0,0,0,.14);

  --shadow-sm:    0 1px 3px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);

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

  --sidebar-w:    260px;
  --topbar-h:     64px;
  --transition:   0.18s ease;
}

[data-theme="dark"] {
  --bg-app:       #0a1929;
  --bg-sidebar:   #050f1a;
  --bg-card:      #0d2137;
  --bg-topbar:    #0d2137;
  --bg-input:     rgba(255,255,255,.06);
  --bg-hover:     rgba(47,134,255,.12);
  --bg-active:    rgba(47,134,255,.2);

  --text-primary:   #e2eaf2;
  --text-secondary: #8da0b0;
  --text-muted:     #4b5c6b;

  --border:       rgba(255,255,255,.06);
  --border-strong:rgba(255,255,255,.1);

  --shadow-sm:    0 1px 3px rgba(0,0,0,.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,.35);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.4);
}

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

html, body {
  height: 100%;
  overflow: hidden;
}

.yc-crm-body {
  padding: 0 !important;
  margin: 0 !important;
  background: var(--bg-app) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
  color: var(--text-primary) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* ============================================================
   APP LAYOUT
   ============================================================ */

.yc-crm-app {
  display: flex !important;
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden !important;
  background: var(--bg-app) !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.yc-crm-sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width var(--transition);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.yc-crm-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}

.yc-brand-logo {
  color: #2f86ff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.yc-brand-label {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
}

.yc-sidebar-collapse {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.yc-sidebar-collapse:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.yc-crm-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
}

.yc-nav-section {
  margin-bottom: 8px;
}

.yc-nav-label {
  display: block;
  color: var(--text-sidebar-m);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 14px 10px 6px;
}

.yc-nav-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text-sidebar);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.yc-nav-btn svg {
  flex-shrink: 0;
  opacity: .7;
  transition: opacity var(--transition);
}

.yc-nav-btn:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.yc-nav-btn:hover svg { opacity: 1; }

.yc-nav-btn.active {
  background: rgba(47,134,255,.2);
  color: #fff;
}

.yc-nav-btn.active svg { opacity: 1; color: #2f86ff; }

.yc-crm-user-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
}

.yc-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.yc-user-info {
  flex: 1;
  min-width: 0;
}

.yc-user-name {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yc-user-role {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: 11px;
}

.yc-logout-btn {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition);
}

.yc-logout-btn:hover { color: #ef4444; }

/* ============================================================
   MAIN
   ============================================================ */

.yc-crm-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  min-width: 0;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.yc-crm-topbar {
  height: var(--topbar-h);
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.yc-topbar-left { min-width: 0; }

.yc-page-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.yc-page-subtitle {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.yc-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.yc-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.yc-search-wrap svg {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  pointer-events: none;
}

.yc-search-input {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px 8px 36px;
  font-size: 13px;
  color: var(--text-primary);
  width: 220px;
  outline: none;
  transition: border-color var(--transition), width var(--transition);
}

.yc-search-input:focus {
  border-color: var(--accent);
  width: 280px;
}

.yc-topbar-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.yc-topbar-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

.yc-topbar-date {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   CONTENT
   ============================================================ */

.yc-crm-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  background: var(--bg-app);
  position: relative;
}

/* ============================================================
   LOADER
   ============================================================ */

.yc-module-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

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

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

/* ============================================================
   STATS CARDS
   ============================================================ */

.yc-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.yc-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.yc-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 18px;
}

.yc-stat-icon.blue   { background: rgba(47,134,255,.12); color: #2f86ff; }
.yc-stat-icon.green  { background: rgba(34,197,94,.12);  color: #22c55e; }
.yc-stat-icon.amber  { background: rgba(245,158,11,.12); color: #f59e0b; }
.yc-stat-icon.red    { background: rgba(239,68,68,.12);  color: #ef4444; }
.yc-stat-icon.purple { background: rgba(139,92,246,.12); color: #8b5cf6; }
.yc-stat-icon.teal   { background: rgba(20,184,166,.12); color: #14b8a6; }

.yc-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.yc-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

/* ============================================================
   SECTION GRID
   ============================================================ */

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

.yc-section-grid.full { grid-template-columns: 1fr; }

.yc-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

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

.yc-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.yc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 9px 16px;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.yc-btn:active { transform: scale(.98); }

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

.yc-btn-secondary {
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.yc-btn-secondary:hover { background: var(--border); }

.yc-btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.yc-btn-ghost:hover { background: var(--accent-light); }

.yc-btn-danger {
  background: rgba(239,68,68,.12);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.2);
}
.yc-btn-danger:hover { background: rgba(239,68,68,.2); }

.yc-btn-sm { padding: 6px 12px; font-size: 12px; }
.yc-btn-icon { width: 32px; height: 32px; padding: 0; justify-content: center; border-radius: var(--radius-sm); }

/* ============================================================
   TABLE
   ============================================================ */

.yc-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

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

.yc-table th {
  background: var(--bg-input);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}

.yc-table th:hover { color: var(--text-primary); }

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

.yc-table tr:last-child td { border-bottom: 0; }

.yc-table tr:hover td { background: var(--bg-hover); }

.yc-table-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================================
   BADGES
   ============================================================ */

.yc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.yc-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.yc-badge-green  { background: rgba(34,197,94,.12);  color: #16a34a; }
.yc-badge-red    { background: rgba(239,68,68,.12);  color: #dc2626; }
.yc-badge-amber  { background: rgba(245,158,11,.12); color: #d97706; }
.yc-badge-blue   { background: rgba(47,134,255,.12); color: #2563eb; }
.yc-badge-gray   { background: rgba(0,0,0,.06);      color: var(--text-muted); }
.yc-badge-purple { background: rgba(139,92,246,.12); color: #7c3aed; }

/* ============================================================
   TOOLBAR
   ============================================================ */

.yc-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.yc-toolbar-search {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
}

.yc-toolbar-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.yc-toolbar-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 14px 9px 34px;
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
}

.yc-toolbar-search input:focus { border-color: var(--accent); }

.yc-toolbar-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.yc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.yc-page-btn {
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.yc-page-btn:hover { background: var(--accent-light); color: var(--accent); }
.yc-page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.yc-page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   SWITCH TOGGLE
   ============================================================ */

.yc-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.yc-switch input { opacity: 0; width: 0; height: 0; }

.yc-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}

.yc-switch-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.yc-switch input:checked + .yc-switch-slider { background: var(--success); }
.yc-switch input:checked + .yc-switch-slider::before { transform: translateX(18px); }

/* ============================================================
   CHART
   ============================================================ */

.yc-chart-wrap {
  position: relative;
  height: 220px;
}

/* ============================================================
   MODAL
   ============================================================ */

.yc-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(7,24,39,.6) !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: fadeIn .15s ease !important;
}

.yc-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 580px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: slideUp .2s ease;
}

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

.yc-modal-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.yc-modal-close {
  width: 30px;
  height: 30px;
  background: var(--bg-input);
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.yc-modal-close:hover { background: var(--border); color: var(--text-primary); }

.yc-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

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

/* ============================================================
   FORM
   ============================================================ */

.yc-form-group {
  margin-bottom: 16px;
}

.yc-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.yc-form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
}

.yc-form-control:focus { border-color: var(--accent); }

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

/* ============================================================
   TOAST
   ============================================================ */

.yc-toast-container {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 20000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.yc-toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  animation: slideInRight .25s ease;
  border-left: 3px solid var(--accent);
}

.yc-toast.success { border-left-color: var(--success); }
.yc-toast.error   { border-left-color: var(--danger); }
.yc-toast.warning { border-left-color: var(--warning); }

.yc-toast-msg {
  flex: 1;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.yc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 14px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  gap: 10px;
  min-height: 160px;
}

.yc-empty svg { opacity: .4; }

/* ============================================================
   PSYCHOLOGIST CARD
   ============================================================ */

.yc-psycho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.yc-psycho-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.yc-psycho-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.yc-psycho-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.yc-psycho-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.yc-psycho-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.yc-psycho-type {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.yc-psycho-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 8px;
}

.yc-psycho-actions {
  display: flex;
  gap: 6px;
}

.yc-online-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yc-online-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .yc-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .yc-section-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --sidebar-w: 220px; }
  .yc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .yc-crm-sidebar { position: fixed; left: -100%; z-index: 100; transition: left var(--transition); }
  .yc-crm-sidebar.open { left: 0; }
  .yc-stats-grid { grid-template-columns: 1fr 1fr; }
  .yc-crm-content { padding: 16px; }
  .yc-crm-topbar { padding: 0 16px; }
  .yc-form-row { grid-template-columns: 1fr; }
}
