/* ============================================================
   Release Signal — Warm Editorial Light Theme
   Mobile-first, optimized for iPhone 15 outdoor reading
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap');

/* ── Custom properties ── */
:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --border: #e0ddd6;
  --text: #1a1a2e;
  --muted: #8b8680;
  --accent: #8b6914;
  --accent-dim: rgba(139, 105, 20, 0.08);
  --accent-hover: rgba(139, 105, 20, 0.12);

  --card-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --card-shadow-hover: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);

  --impact-breaking: #92400e;
  --impact-action: #6b7280;
  --impact-nice: #9ca3af;
  --impact-skip: rgba(156, 163, 175, 0.35);

  --radius: 8px;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --serif: 'Newsreader', Georgia, serif;

  --transition-fast: 150ms ease;
  --transition-med: 250ms ease;
}

/* ── Reset & base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  padding-bottom: calc(60px + env(safe-area-inset-bottom, 20px));
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: contain;
}

/* ── Layout ── */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  padding: calc(16px + env(safe-area-inset-top, 0px)) 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-title {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  word-spacing: -0.4em;
  color: var(--accent);
  text-transform: uppercase;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-icons {
  display: flex;
  align-items: center;
  gap: 3px;
}

.brand-icon {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
}

.admin-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-controls.hidden {
  display: none;
}

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

.admin-model-select {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px 10px;
  min-height: 30px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%238b8680'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 22px;
}

.admin-model-select:focus {
  outline: none;
  border-color: var(--accent);
}

.btn-obsidian,
.btn-fetch {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 5px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 30px;
}

.btn-obsidian:hover,
.btn-fetch:hover {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: var(--card-shadow);
}

.btn-fetch:active {
  transform: scale(0.97);
}

.btn-fetch .spinner {
  display: none;
  width: 12px;
  height: 12px;
  border: 1.5px solid transparent;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-fetch.loading .spinner {
  display: inline-block;
}

.btn-fetch.loading .icon-refresh {
  display: none;
}

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

/* ============================================================
   ACTIVITY GRID (GitHub-style)
   ============================================================ */

.grid-section {
  margin-bottom: 16px;
}

.header-activity {
  margin: 12px 0 0;
  padding: 0 20px;
}

.grid-summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.grid-summary::-webkit-details-marker {
  display: none;
}

.grid-summary-inner {
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: border-color var(--transition-fast);
}

.grid-summary:hover .grid-summary-inner {
  border-color: var(--accent);
}

details.grid-section[open] .grid-summary-inner {
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.grid-tick-month {
  font-weight: 500;
  color: var(--text);
  opacity: 0.5;
}

.chip-sep {
  color: var(--border);
  font-size: 14px;
  line-height: 28px;
  padding: 0 2px;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.grid-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 14px;
  box-shadow: var(--card-shadow);
}

.grid-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
}

.grid-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  width: 100px;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.grid-cells {
  display: flex;
  gap: 2px;
  flex: 1;
  overflow-x: auto;
}

.grid-cell {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  color: var(--muted);
  transition: background var(--transition-fast);
  flex-shrink: 0;
  position: relative;
}

.grid-cell-0 {
  background: rgba(139, 105, 20, 0.03);
  color: transparent;
}

.grid-cell-1 {
  background: rgba(139, 105, 20, 0.08);
  color: var(--muted);
}

.grid-cell-2 {
  background: rgba(139, 105, 20, 0.16);
  color: var(--text);
}

.grid-cell-3 {
  background: rgba(139, 105, 20, 0.28);
  color: var(--text);
}

.grid-cell:hover {
  outline: 1px solid var(--accent);
}

.grid-cell-today {
  outline: 2px solid var(--accent);
  background: rgba(139, 105, 20, 0.2);
}

.grid-cell-today::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.grid-summary:hover .grid-cell:not(.grid-cell-0) {
  background: rgba(139, 105, 20, 0.15);
}

.grid-summary:hover .grid-cell {
  color: var(--accent);
}

.grid-sources {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.grid-axis {
  margin-top: 2px;
}

.grid-ticks {
  display: flex;
  gap: 2px;
  flex: 1;
}

.grid-tick {
  width: 14px;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
  text-align: center;
  flex-shrink: 0;
}

/* ============================================================
   FILTER CHIPS
   ============================================================ */

.filter-section {
  margin-bottom: 20px;
}

.chip-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 4px 2px;
  flex-wrap: nowrap;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  white-space: nowrap;
  min-height: 32px;
  display: flex;
  align-items: center;
  background: var(--surface);
  color: var(--muted);
}

.chip.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.chip:hover {
  border-color: var(--muted);
}

/* ============================================================
   FEED
   ============================================================ */

.feed-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.date-group {
  margin-bottom: 24px;
}

.date-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.date-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: flex;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  animation: cardReveal 0.3s ease forwards;
  transition: box-shadow var(--transition-fast);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
}

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

.card {
  animation-delay: var(--card-delay, 0ms);
}

/* Left stripe — thin accent bar */
.card-stripe {
  width: 3px;
  flex-shrink: 0;
}

.card[data-impact="breaking"] .card-stripe { background: var(--impact-breaking); }
.card[data-impact="action needed"] .card-stripe { background: var(--impact-action); }
.card[data-impact="action"] .card-stripe { background: var(--impact-action); }
.card[data-impact="nice to have"] .card-stripe { background: var(--impact-nice); }
.card[data-impact="nice"] .card-stripe { background: var(--impact-nice); }
.card[data-impact="skip"] .card-stripe { background: var(--impact-skip); }
.card .card-stripe { background: var(--impact-nice); }

.card[data-impact="skip"] .card-l1 { color: var(--muted); }
.card[data-impact="skip"] { opacity: 0.55; }
.card[data-impact="skip"] .source-name { color: var(--muted); }

.card-body {
  flex: 1;
  padding: 16px 18px;
  min-width: 0;
}

/* Card header toggle */
.card-header-toggle {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  min-height: 44px;
}

.card-header-toggle:hover .card-l1 {
  color: var(--accent);
}

.card-header-toggle:hover .toggle-arrow {
  color: var(--accent);
}

.card-header-toggle .toggle-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
}

.card-header-toggle.open .toggle-arrow {
  transform: rotate(90deg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card .source-dot { background: var(--text); }
.card[data-impact="skip"] .source-dot { background: var(--muted); }
.card.latest-fetch .source-dot { background: var(--accent); }

.source-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.version-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rel-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}

/* L1 summary */
.card-l1 {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}

/* ── Expandable sections ── */
.expandable {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.expandable.open {
  max-height: 800px;
  opacity: 1;
  margin-top: 12px;
}

/* L2 bullets */
.card-l2 {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.card-l2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-l2 li {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.card-l2 li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Bullet groups */
.bullet-group {
  margin-bottom: 8px;
}

.bullet-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
  padding: 4px 0;
}

.bullet-expandable {
  cursor: pointer;
  transition: color var(--transition-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.bullet-expandable:hover {
  color: var(--accent);
}

.bullet-expandable::after {
  content: ' ▸';
  font-size: 10px;
  color: var(--muted);
}

.bullet-expandable.open::after {
  content: ' ▾';
}

/* Per-bullet deep dive */
.bullet-dive {
  margin: 6px 0 10px 18px;
  padding: 10px 14px;
  border-left: 2px solid var(--border);
  background: var(--accent-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.bullet-dive p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}

.source-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}

.source-link:hover {
  opacity: 0.7;
}

.toggle-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  padding: 0;
  transition: color var(--transition-fast);
  min-height: 44px;
}

.toggle-link:hover {
  color: var(--text);
}

.toggle-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
  font-style: normal;
}

.toggle-link.open .toggle-arrow {
  transform: rotate(90deg);
}

.l2-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dotted var(--border);
  transition: color var(--transition-fast);
}

.l2-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.card.hidden,
.date-group.hidden {
  display: none;
}

/* ============================================================
   FETCH LOG (SSE output)
   ============================================================ */

.fetch-log {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 20px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: var(--card-shadow);
}

.fetch-log.visible {
  display: block;
}

.fetch-log pre {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
  word-break: break-word;
}

.fetch-log .log-error {
  color: #dc2626;
}

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

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}

.empty-state p {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* ============================================================
   LOAD MORE
   ============================================================ */

.btn-load-more {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 52px;
  box-shadow: var(--card-shadow);
}

.btn-load-more:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* ============================================================
   STICKY FOOTER
   ============================================================ */

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-stat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.footer-sep {
  color: var(--border);
}

.footer-stat span {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   SCROLLBAR (desktop)
   ============================================================ */

@media (pointer: fine) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  ::-webkit-scrollbar-track {
    background: var(--bg);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
  }
}

/* ============================================================
   RESPONSIVE — iPhone 15 optimized
   ============================================================ */

@media (max-width: 430px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
    padding-bottom: 10px;
  }

  .site-header .container {
    gap: 8px;
  }

  .site-title {
    font-size: 14px;
    word-spacing: -0.35em;
    white-space: nowrap;
  }

  .header-activity {
    padding: 0 16px;
  }

  .chip {
    font-size: 9px;
    padding: 4px 10px;
    min-height: 28px;
  }

  .chip-row {
    gap: 5px;
    flex-wrap: nowrap;
  }

  .card-body {
    padding: 12px 14px;
  }

  .card-l1 {
    font-size: 0.9rem;
  }

  .grid-label {
    width: 70px;
    font-size: 7px;
  }

  .grid-cell {
    width: 11px;
    height: 11px;
    font-size: 6px;
  }

  .grid-tick {
    width: 11px;
    font-size: 6px;
  }

  .footer-inner {
    padding: 8px 16px;
    font-size: 10px;
  }

  .admin-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .admin-dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .date-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

/* Larger screens get a bit more breathing room */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  .container {
    max-width: 680px;
  }

  .site-header {
    padding: 40px 0 24px;
  }

  .site-title {
    font-size: 22px;
  }

  .card-body {
    padding: 18px 22px;
  }

  .card-l1 {
    font-size: 1.05rem;
  }
}

.section-toggle {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.section-toggle::before {
  content: '▾ ';
  font-size: 9px;
}

details:not([open]) > .section-toggle::before {
  content: '▸ ';
}

.site-sync {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* ============================================================
   ADMIN DOT + LOGIN MODAL
   ============================================================ */

.admin-btn-login {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  padding: 6px 14px;
  min-height: 32px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.admin-btn-login:hover {
  color: var(--text);
  border-color: var(--muted);
}

.admin-btn-login.authed {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-overlay.hidden {
  display: none;
}

.login-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 32px;
  width: 100%;
  max-width: 320px;
  position: relative;
}

.login-title {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}

.login-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition-fast);
  min-height: 48px;
}

.login-input:focus {
  border-color: var(--accent);
}

.login-btn {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  background: var(--text);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 48px;
  transition: opacity var(--transition-fast);
}

.login-btn:hover {
  opacity: 0.85;
}

.login-error {
  font-family: var(--mono);
  font-size: 12px;
  color: #dc2626;
  text-align: center;
  margin-top: 12px;
}

.login-hint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  opacity: 0.5;
}

.login-error.hidden {
  display: none;
}

.login-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
