:root {
  --bg: #faf6f5;
  --bg-wash: #f3ebe9;
  --surface: #ffffff;
  --ink: #1f1416;
  --ink-soft: #6e5a5e;
  --brand: #6b1c28;
  --brand-deep: #3d0f16;
  --brand-mid: #8a3040;
  --brand-soft: #a45a66;
  --blush: #edd5d8;
  --blush-soft: #f7ecee;
  --line: rgba(61, 15, 22, 0.1);
  --line-strong: rgba(61, 15, 22, 0.18);
  --success: #1d6b3f;
  --success-bg: #eaf6ef;
  --warn: #9a5610;
  --warn-bg: #fff5e8;
  --danger: #a61f16;
  --danger-bg: #fceceb;
  --shadow: 0 1px 2px rgba(61, 15, 22, 0.04), 0 16px 40px rgba(61, 15, 22, 0.07);
  --shadow-sm: 0 1px 2px rgba(61, 15, 22, 0.05), 0 8px 20px rgba(61, 15, 22, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-label: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 8% -5%, rgba(237, 213, 216, 0.55), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(107, 28, 40, 0.05), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-wash) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.panel-shell {
  display: grid;
  grid-template-columns: 268px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 32px 20px 24px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, var(--brand-deep) 0%, var(--brand) 72%, #5a1721 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
}

.brand-mark span {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-mark small {
  position: absolute;
  right: -7px;
  bottom: -7px;
  background: #16070a;
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 6px;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-copy em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 450;
  font-size: 0.95rem;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(3px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  opacity: 0.9;
}

.sidebar-foot {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-foot .meta {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

.sidebar-foot .btn-ghost {
  justify-content: flex-start;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

.sidebar-foot .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.main {
  padding: 36px 40px 56px;
  min-width: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  animation: rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-soft);
  margin: 0 0 10px;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.2vw, 2.85rem);
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.page-sub {
  margin: 12px 0 0;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand-mid), var(--brand));
  color: #fff;
  box-shadow: 0 8px 22px rgba(107, 28, 40, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(107, 28, 40, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line-strong);
  color: var(--brand);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #fff;
  border-color: rgba(107, 28, 40, 0.28);
}

.btn-danger {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: rgba(166, 31, 22, 0.14);
}

.btn-sm {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 0.84rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  animation: rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent 85%);
  opacity: 0.55;
}

.stat-card:nth-child(2) { animation-delay: 0.06s; }
.stat-card:nth-child(3) { animation-delay: 0.12s; }
.stat-card:nth-child(4) { animation-delay: 0.18s; }

.stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.stat-value {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-note {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  animation: rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--blush-soft) 100%);
}

.card-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.card-body {
  padding: 8px 8px 12px;
}

.card-body:not(:has(.table-wrap)) {
  padding: 20px 22px;
}

.hero-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--blush-soft) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  animation: rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fff, var(--blush));
  color: var(--brand);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-banner h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.hero-banner p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.95rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}

.module-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.module-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 28, 40, 0.22);
  box-shadow: var(--shadow);
}

.module-card.disabled {
  opacity: 0.58;
  filter: grayscale(0.12);
}

.module-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.module-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blush-soft);
  color: var(--brand);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.module-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}

.module-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.module-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 450;
  color: var(--ink-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-essential {
  background: var(--brand);
  color: #fff;
}

.badge-on {
  background: var(--success-bg);
  color: var(--success);
}

.badge-off {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge-soft {
  background: var(--blush-soft);
  color: var(--brand);
  border: 1px solid var(--line);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 14px;
}

.type-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  animation: rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.type-card:hover {
  border-color: rgba(107, 28, 40, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.type-card.disabled {
  opacity: 0.52;
}

.type-emoji {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, var(--blush-soft));
  color: var(--brand);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.type-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.type-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.type-actions {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.table-wrap {
  overflow-x: auto;
}

table.data {
  width: 100%;
  border-collapse: collapse;
}

table.data th,
table.data td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

table.data th {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 550;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--blush-soft);
}

table.data tr {
  transition: background 0.15s ease;
}

table.data tbody tr:hover {
  background: rgba(237, 213, 216, 0.22);
}

table.data tbody tr:last-child td {
  border-bottom: none;
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--blush), #fff);
  color: var(--brand);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  flex-shrink: 0;
}

.muted {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.search-bar input,
.search-bar select,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-bar input {
  max-width: 360px;
}

.search-bar select {
  max-width: 220px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.search-bar input:focus,
.search-bar select:focus {
  border-color: rgba(107, 28, 40, 0.4);
  box-shadow: 0 0 0 4px rgba(107, 28, 40, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.field .help {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 4px;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.messages {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.message {
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(29, 107, 63, 0.14);
  animation: rise 0.3s ease both;
}

.message.error {
  background: var(--danger-bg);
  color: var(--danger);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.kv {
  display: grid;
  gap: 12px;
}

.kv-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.kv-row strong {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 550;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.empty {
  padding: 42px 20px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Login */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 213, 216, 0.7), transparent 68%);
  top: -120px;
  right: -80px;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.login-page::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 28, 40, 0.07), transparent 70%);
  bottom: -100px;
  left: -60px;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

.login-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 32px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-logo {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff, var(--blush-soft));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: var(--shadow-sm);
}

.login-logo small {
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 6px;
}

.login-card h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--brand);
  font-size: clamp(1.9rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.login-card .tag {
  margin: 12px 0 0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-soft);
}

.login-card .desc {
  margin: 12px 0 28px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}

.login-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.login-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-form input:focus {
  border-color: rgba(107, 28, 40, 0.4);
  box-shadow: 0 0 0 4px rgba(107, 28, 40, 0.08);
}

.login-error {
  padding: 11px 13px;
  border-radius: 10px;
  background: var(--danger-bg);
  color: var(--danger);
  font-size: 0.9rem;
}

.secure-note {
  margin-top: 22px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-18px, 12px);
  }
}

@media (max-width: 1100px) {
  .stats,
  .grid-2,
  .detail-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .panel-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    height: auto;
    border-radius: 0 0 24px 24px;
    gap: 22px;
    padding: 24px 18px;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 24px 16px 40px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-title {
    font-size: 2rem;
  }
}
