:root {
  color-scheme: dark;
  --ink: #05070a;
  --panel: #10151c;
  --panel-2: #151b23;
  --line: rgba(132, 151, 173, 0.22);
  --text: #f6f7fb;
  --muted: #8c98a8;
  --soft: #5e6977;
  --cyan: #36d7ff;
  --amber: #f6b84b;
  --danger: #ff5d6c;
  --mint: #54e0a8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 0%, rgba(54, 215, 255, 0.1), transparent 28rem),
    linear-gradient(135deg, #05070a 0%, #090d12 46%, #0b0f14 100%);
  color: var(--text);
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0,0,0,.28);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}
input[type="range"] { accent-color: var(--cyan); padding: 0; }
textarea { min-height: 92px; resize: vertical; }

.app { display: flex; min-height: 100vh; }
.sidebar {
  width: 264px; flex: 0 0 264px; padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(5,7,10,.86);
}
.brand { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid rgba(54,215,255,.42); background: rgba(54,215,255,.1);
  color: var(--cyan); font-weight: 900; font-size: 19px;
}
.brand-title { font-size: 18px; font-weight: 900; }
.brand-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav { display: grid; gap: 8px; }
.nav button {
  border: 1px solid transparent; border-radius: 10px; background: transparent; color: #a7b0bd;
  padding: 11px 12px; text-align: left; font-weight: 800; display: flex; justify-content: space-between;
}
.nav button.active { color: var(--cyan); background: rgba(54,215,255,.11); border-color: rgba(54,215,255,.2); }
.sidebar-meter { margin-top: 34px; padding: 16px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.shell { flex: 1; min-width: 0; }
.topbar {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 22px 32px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.date { color: var(--muted); font-size: 14px; }
h1, h2, h3, p { margin: 0; }
h1 { margin-top: 3px; font-size: 31px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.actions.compact { justify-content: flex-end; }
.btn {
  border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.035);
  color: var(--text); padding: 10px 14px; font-weight: 900;
}
.btn:hover { border-color: rgba(54,215,255,.55); color: var(--cyan); }
.btn.primary { background: var(--cyan); border-color: var(--cyan); color: #001018; }
.btn.quiet { color: var(--muted); }
.btn.danger { border-color: rgba(255,93,108,.34); color: var(--danger); }
.btn.danger:hover { background: rgba(255,93,108,.12); border-color: rgba(255,93,108,.7); color: var(--danger); }
.top-actions { align-items: center; }
.status-pill {
  border-radius: 999px;
  padding: 9px 13px;
  border: 1px solid rgba(54,215,255,.24);
  background: rgba(54,215,255,.08);
  color: var(--cyan);
  font-weight: 900;
  font-size: 13px;
}
.status-pill.done { border-color: rgba(84,224,168,.22); background: rgba(84,224,168,.08); color: var(--mint); }
.status-pill.warn { border-color: rgba(246,184,75,.26); background: rgba(246,184,75,.08); color: var(--amber); }
.status-pill.risk { border-color: rgba(255,93,108,.28); background: rgba(255,93,108,.08); color: var(--danger); }
.auth-chip {
  border: 1px solid rgba(132,151,173,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #dbe4ee;
  max-width: 220px;
  overflow: hidden;
  padding: 9px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
}
.auth-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 20px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,12,16,.72);
}
.auth-panel h2 {
  font-size: 22px;
}
.auth-panel p {
  margin-top: 8px;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.55;
}
.auth-form {
  display: grid;
  gap: 10px;
}
.content {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 380px); gap: 20px;
  padding: 28px 32px; max-height: calc(100vh - 88px); overflow: auto;
}
.content.dashboard-content { grid-template-columns: minmax(0, 1fr); }
.dashboard-content { padding-top: 34px; }
.maincol, .sidecol { display: grid; gap: 20px; align-content: start; min-width: 0; }
.panel {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(21,27,35,.95), rgba(13,17,23,.95));
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
  padding: 20px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.panel.subtle { background: rgba(16,21,28,.86); box-shadow: none; }
.focus-panel { padding: 26px; }
.dashboard-planner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.dashboard-main, .dashboard-side {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.side-card { padding: 18px; box-shadow: none; background: rgba(16,21,28,.84); }
.hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; min-width: 0; }
.kicker { color: var(--cyan); font-size: 14px; font-weight: 800; }
.hero h2 { margin-top: 8px; max-width: 780px; font-size: 38px; line-height: 1.05; }
.hero p { margin-top: 12px; max-width: 690px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.metrics { display: grid; grid-template-columns: repeat(3, 96px); gap: 12px; text-align: center; }
.metric { border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.035); padding: 16px 10px; }
.metric strong { display: block; font-size: 30px; }
.metric span { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bar { height: 8px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.09); margin-top: 14px; }
.fill { height: 100%; border-radius: inherit; background: var(--cyan); }
.fill.warn { background: var(--amber); }
.fill.risk { background: var(--danger); }
.fill.done { background: var(--mint); }
.grid2 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.panel-head.relaxed { margin-bottom: 20px; }
.panel-head h3 { font-size: 18px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; font-weight: 800; }
.title-input, .sub-input {
  border-color: transparent;
  background: transparent;
  padding: 0;
  border-radius: 6px;
}
.title-input { font-size: 20px; font-weight: 900; }
.sub-input { margin-top: 4px; color: var(--muted); font-size: 13px; }
.title-input:focus, .sub-input:focus { border-color: rgba(54,215,255,.45); background: rgba(0,0,0,.18); padding: 6px 8px; }
.task-row, .insight, .project-card, .task-edit, .review-card {
  border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); padding: 12px;
}
.task-row { width: 100%; display: flex; align-items: center; gap: 12px; text-align: left; color: var(--text); margin-top: 10px; }
.task-row.calm {
  margin-top: 12px;
  padding: 16px;
  border-color: rgba(132,151,173,.18);
  background: rgba(255,255,255,.025);
}
.task-row.calm:hover,
.task-row.calm.active {
  border-color: rgba(54,215,255,.42);
  background: rgba(54,215,255,.055);
}
.check { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; border: 1px solid #566273; border-radius: 6px; }
.task-row .check { background: transparent; color: var(--text); padding: 0; }
.check.done { background: var(--mint); border-color: var(--mint); color: #00150c; font-weight: 900; }
.grow { flex: 1; min-width: 0; }
.grow strong, .grow span { display: block; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.badge { border-radius: 7px; padding: 5px 8px; font-size: 12px; font-weight: 900; background: rgba(54,215,255,.1); color: var(--cyan); white-space: nowrap; }
.quiet-badge { background: rgba(255,255,255,.055); color: #c5ceda; }
.badge.warn { background: rgba(246,184,75,.14); color: var(--amber); }
.badge.risk { background: rgba(255,93,108,.14); color: var(--danger); }
.badge.done { background: rgba(84,224,168,.14); color: var(--mint); }
.stack { display: grid; gap: 12px; }
.projects { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.projects.relaxed-projects { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 14px; }
.project-card { text-align: left; color: var(--text); }
.project-card.active { border-color: rgba(54,215,255,.62); background: rgba(54,215,255,.07); }
.project-top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.project-title { font-weight: 900; }
.timeline-head { align-items: flex-start; }
.range-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0,0,0,.24);
}
.range-switch button {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}
.range-switch button.active {
  background: var(--cyan);
  color: #001018;
}
.timeline-wrap { overflow-x: auto; }
.timeline { min-width: 1240px; display: grid; grid-template-columns: repeat(7, minmax(170px,1fr)); gap: 12px; }
.timeline.wide { min-width: 2300px; grid-template-columns: repeat(14, minmax(155px,1fr)); }
.day { min-height: 285px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); padding: 12px; }
.day-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.day-name { font-weight: 900; }
.day-date { color: var(--muted); font-size: 12px; margin-top: 3px; }
.event { width: 100%; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.04); padding: 9px; margin-top: 8px; color: var(--text); text-align: left; }
.event:hover { border-color: rgba(54,215,255,.42); background: rgba(54,215,255,.055); }
.event-title { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; font-weight: 900; }
.event-meta { margin-top: 5px; color: var(--muted); font-size: 11px; }
.event-submeta { margin-top: 4px; color: #697586; font-size: 10px; }
.warmap-panel { padding: 16px; }
.timeline.dashboard {
  min-width: 0;
  gap: 8px;
}
.timeline.dashboard.range-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline.dashboard.range-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.timeline.dashboard.range-30 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.timeline.dashboard .day {
  min-height: 132px;
  padding: 8px;
  border-radius: 10px;
}
.timeline.dashboard .day-head {
  margin-bottom: 7px;
}
.timeline.dashboard .day-name {
  font-size: 12px;
}
.timeline.dashboard .day-date {
  font-size: 10px;
}
.timeline.dashboard .badge {
  padding: 3px 6px;
  font-size: 10px;
}
.timeline.dashboard .event {
  margin-top: 5px;
  padding: 6px;
  border-radius: 7px;
}
.timeline.dashboard .event-title {
  font-size: 10px;
}
.timeline.dashboard .event-meta {
  font-size: 9px;
}
.timeline.dashboard.range-30 .day {
  min-height: 104px;
  max-height: 152px;
  overflow: auto;
}
.timeline.dashboard.range-30 .event {
  padding: 5px;
}
.form-grid { display: grid; gap: 12px; }
.attention-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.attention-line span { color: var(--muted); font-weight: 800; }
.attention-line strong { font-size: 28px; }
.soft-bar { margin-top: 10px; }
.compact-stack { gap: 10px; }
.notice, .move-suggestion {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(132,151,173,.16);
  background: rgba(0,0,0,.18);
  color: #c8d1dd;
  line-height: 1.5;
  font-size: 14px;
}
.notice.calm { color: var(--mint); border-color: rgba(84,224,168,.18); background: rgba(84,224,168,.055); }
.notice.warn { color: var(--amber); border-color: rgba(246,184,75,.2); background: rgba(246,184,75,.06); }
.move-suggestion { color: #d6deea; }
.ai-empty {
  border: 1px dashed rgba(132,151,173,.2);
  border-radius: 12px;
  color: var(--muted);
  padding: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.ai-review {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.ai-summary,
.ai-suggestion,
.ai-memory,
.ai-rule-checks > div {
  border: 1px solid rgba(132,151,173,.18);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  padding: 14px;
}
.ai-summary { display: grid; gap: 10px; }
.ai-summary p,
.ai-suggestion p,
.ai-rule-checks p {
  margin-top: 8px;
  color: #c9d3df;
  line-height: 1.5;
}
.ai-memory {
  display: grid;
  gap: 8px;
}
.ai-memory span {
  display: block;
  color: #c9d3df;
  line-height: 1.45;
}
.ai-rule-checks {
  display: grid;
  gap: 10px;
}
.ai-rule-checks span {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.ai-rule-checks .pass { color: var(--mint); }
.ai-rule-checks .watch { color: var(--amber); }
.ai-rule-checks .fail { color: var(--danger); }
.deadline-list { display: grid; gap: 8px; }
.deadline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(132,151,173,.16);
  border-radius: 12px;
  background: rgba(0,0,0,.16);
  color: var(--text);
  padding: 12px;
  text-align: left;
}
.deadline-row span span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.deadline-row em { color: var(--cyan); font-style: normal; font-weight: 900; }
.move-date-label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 18px;
}
.progressive {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.progressive details {
  border: 1px solid rgba(132,151,173,.18);
  border-radius: 14px;
  background: rgba(16,21,28,.72);
  padding: 0;
  overflow: hidden;
}
.progressive summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
  color: #d8e0eb;
}
.progressive details > .panel,
.progressive details > .projects,
.progressive details > .analytics-lite {
  margin: 0 16px 16px;
}
.quiet-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quiet-metrics div {
  border: 1px solid rgba(132,151,173,.16);
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.quiet-metrics strong {
  display: block;
  font-size: 28px;
}
.quiet-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.template-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 16px 0;
}
.template-task { display: grid; grid-template-columns: minmax(160px, 1.1fr) minmax(160px, 1fr) 82px auto; gap: 12px; align-items: center; }
.section-name {
  border-color: transparent;
  background: rgba(255,255,255,.025);
  font-weight: 900;
}
.section-name:focus {
  border-color: rgba(54,215,255,.45);
  background: rgba(0,0,0,.18);
}
.task-edit { display: grid; gap: 10px; }
.task-edit-head { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.mini-actions { display: flex; gap: 6px; }
.mini-actions button { border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.03); color: var(--muted); padding: 4px 8px; }
.mini-actions .danger-text { color: var(--danger); border-color: rgba(255,93,108,.24); }
.empty { border: 1px dashed var(--line); border-radius: 12px; padding: 16px; color: var(--muted); }
.learning { border: 1px solid rgba(84,224,168,.22); border-radius: 12px; padding: 12px; color: var(--mint); background: rgba(84,224,168,.07); line-height: 1.55; font-size: 14px; }
.mobile-nav { display: none; gap: 8px; overflow-x: auto; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav button { white-space: nowrap; }
.nav-section {
  margin: 22px 0 9px;
  color: #657283;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.crm-shell {
  display: grid;
  gap: 20px;
}
.crm-tabs {
  display: inline-flex;
  width: fit-content;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,.22);
}
.crm-tabs button {
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  font-weight: 900;
}
.crm-tabs button.active {
  background: var(--cyan);
  color: #001018;
}
.crm-dashboard,
.crm-log-view {
  display: grid;
  gap: 18px;
}
.crm-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.crm-hero h2 {
  margin-top: 7px;
  font-size: 34px;
}
.month-select {
  max-width: 170px;
}
.crm-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.core-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.crm-metric {
  position: relative;
  min-height: 104px;
  border: 1px solid rgba(132,151,173,.18);
  border-radius: 15px;
  background: rgba(16,21,28,.86);
  padding: 16px;
}
.crm-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.crm-metric strong {
  display: block;
  margin-top: 15px;
  font-size: 28px;
}
.crm-metric.good {
  border-color: rgba(84,224,168,.22);
}
.crm-metric.warn {
  border-color: rgba(246,184,75,.28);
}
.crm-metric::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(100% + 8px);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  border: 1px solid rgba(132,151,173,.24);
  border-radius: 10px;
  background: #0b1016;
  color: #d7dfeb;
  padding: 10px;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
  transition: opacity 140ms ease, transform 140ms ease;
}
.crm-metric:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.crm-tools,
.crm-roster {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.crm-add-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 160px 130px auto;
  gap: 10px;
  align-items: center;
}
.table-panel {
  padding: 0;
}
.crm-table-wrap {
  overflow: auto;
}
.crm-table {
  width: 100%;
  min-width: 1380px;
  border-collapse: collapse;
}
.crm-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #102746;
  color: #eaf3ff;
  font-size: 12px;
  text-align: left;
  padding: 10px;
  white-space: nowrap;
}
.crm-table td {
  border-top: 1px solid rgba(132,151,173,.12);
  padding: 7px;
  background: rgba(255,255,255,.018);
}
.crm-table input,
.crm-table select {
  min-width: 110px;
  border-radius: 7px;
  padding: 7px 8px;
  font-size: 12px;
}
.client-table {
  min-width: 1680px;
}
.mini-danger {
  border: 1px solid rgba(255,93,108,.3);
  border-radius: 7px;
  background: rgba(255,93,108,.08);
  color: var(--danger);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .content { grid-template-columns: 1fr; max-height: none; }
  .sidecol { grid-row: auto; }
  .projects { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .crm-metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .crm-add-row { grid-template-columns: 1fr 1fr; }
  .dashboard-planner { grid-template-columns: 1fr; }
  .dashboard-side { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .selected-task { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .app { display: block; }
  .sidebar { display: none; }
  .mobile-nav { display: flex; }
  .topbar { padding: 18px 16px; align-items: flex-start; flex-direction: column; }
  .auth-panel { grid-template-columns: 1fr; padding: 18px 16px; }
  .content { padding: 16px; }
  .hero, .grid2 { grid-template-columns: 1fr; }
  .metrics, .projects, .projects.relaxed-projects, .dashboard-side, .quiet-metrics, .crm-metric-grid, .core-metrics, .crm-add-row { grid-template-columns: 1fr; }
  .crm-hero, .crm-tools, .crm-roster { align-items: stretch; flex-direction: column; }
  .crm-tabs { width: 100%; }
  .crm-tabs button { flex: 1; }
  .month-select { max-width: none; }
  .template-task { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .hero h2 { font-size: 30px; }
  .focus-panel { padding: 18px; }
  .timeline.dashboard.range-3,
  .timeline.dashboard.range-7,
  .timeline.dashboard.range-30 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .range-switch { width: 100%; }
  .range-switch button { flex: 1; }
}
