:root {
  --bg: #fbfafe;
  --panel: rgba(255, 255, 255, 0.98);
  --panel-soft: #f7f3ff;
  --panel-alt: #fcfbff;
  --line: #ebe6fb;
  --line-strong: #d8cdf9;
  --text: #191629;
  --muted: #6f6a82;
  --purple: #6f3dff;
  --purple-strong: #5b27f5;
  --purple-soft: #f2edff;
  --blue-soft: #e9f4ff;
  --green-soft: #e8fbf0;
  --orange-soft: #fff1e6;
  --pink-soft: #ffeaf3;
  --danger: #ef577c;
  --danger-soft: #fff1f5;
  --success: #17b26a;
  --shadow: 0 18px 50px rgba(109, 61, 255, 0.09);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --sidebar-width: 228px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(122, 80, 255, 0.12), transparent 22%),
    radial-gradient(circle at left center, rgba(235, 224, 255, 0.5), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfafe 100%);
}

body[data-route="/dashboard"],
body[data-route="/voice-generator"] {
  overflow: hidden;
}

button,
input,
textarea,
select,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
}

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.app-shell-fixed {
  position: fixed;
  left: 0;
  top: 0;
  min-height: 0;
  transform-origin: top left;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 16px 14px 14px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 6px 8px;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
}

.brand-mark span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a570ff, #4e56ff);
}

.brand-mark span:nth-child(1) { height: 18px; }
.brand-mark span:nth-child(2) { height: 30px; }
.brand-mark span:nth-child(3) { height: 44px; }
.brand-mark span:nth-child(4) { height: 30px; }
.brand-mark span:nth-child(5) { height: 18px; }

.nav-stack,
.nav-group {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.nav-label {
  margin: 10px 12px 6px;
  color: #8a8599;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-item:hover,
.nav-item.active {
  background: var(--purple-soft);
  color: var(--purple);
}

.nav-item.active {
  box-shadow: inset 0 0 0 1px rgba(111, 61, 255, 0.1);
}

.nav-icon {
  width: 20px;
  display: inline-grid;
  place-items: center;
  font-size: 1rem;
}

.coffee-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fcfaff, #f4eeff);
  display: grid;
  gap: 10px;
}

.coffee-card h3,
.coffee-card p {
  margin: 0;
}

.coffee-card p {
  color: var(--muted);
}

.coffee-illustration {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 1.8rem;
}

.main-shell {
  min-width: 0;
  height: 100vh;
  padding: 14px 18px 16px;
  overflow: hidden;
}

.topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.menu-button,
.icon-button,
.close-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-button span {
  width: 16px;
  height: 2px;
  background: #605a74;
  border-radius: 999px;
}

.menu-button {
  gap: 4px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-button,
.soft-button,
.secondary-button,
.tiny-button,
.primary-button,
.danger-button,
.chip-button {
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.ghost-button,
.soft-button,
.secondary-button,
.tiny-button,
.chip-button {
  border: 1px solid var(--line);
  background: #fff;
}

.ghost-button {
  padding: 10px 16px;
  color: var(--purple);
}

.soft-button,
.secondary-button {
  padding: 11px 16px;
}

.soft-button {
  background: linear-gradient(180deg, #f7f2ff, #f1e9ff);
  color: var(--purple);
}

.primary-button {
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #8b5dff, #5d2cf7);
  box-shadow: 0 14px 30px rgba(109, 61, 255, 0.22);
}

.tiny-button,
.chip-button {
  padding: 10px 14px;
}

.danger-button {
  padding: 11px 16px;
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid #ffd3df;
}

.ghost-button:hover,
.soft-button:hover,
.secondary-button:hover,
.tiny-button:hover,
.primary-button:hover,
.danger-button:hover,
.chip-button:hover,
.menu-button:hover,
.icon-button:hover,
.close-button:hover {
  transform: translateY(-1px);
}

.profile-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #5e7fff, #8b5dff);
  font-weight: 700;
}

.page-root {
  height: calc(100vh - 68px);
  padding-top: 14px;
  overflow: auto;
}

body[data-route="/dashboard"] .page-root,
body[data-route="/voice-generator"] .page-root {
  overflow: hidden;
}

.workspace-shell {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.workspace-canvas {
  width: 1084px;
  height: 700px;
  transform-origin: top left;
  will-change: transform;
}

.page-header {
  margin-bottom: 12px;
}

.page-header h1,
.page-header h2 {
  margin: 0;
}

.page-header h1 {
  font-size: 1.52rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-header h1 span,
.page-header h2 span {
  color: var(--purple);
}

.page-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 10px;
}

.card,
.panel,
.stat-card,
.stack-card,
.audio-card,
.tool-card,
.hero-card,
.timeline-item,
.empty-state {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 12px 14px;
  display: flex;
  gap: 14px;
}

.stat-card p,
.stat-card span {
  margin: 0;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin: 3px 0 2px;
  font-size: 1.35rem;
}

.stat-icon,
.round-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 1.22rem;
  color: #6c44f1;
}

.stat-icon.purple,
.round-icon.purple {
  background: radial-gradient(circle at top, #f5edff, #dfd1ff);
}

.stat-icon.blue,
.round-icon.blue {
  background: radial-gradient(circle at top, #eaf4ff, #d6e8ff);
}

.stat-icon.green,
.round-icon.green {
  background: radial-gradient(circle at top, #edfff5, #d7f8e3);
}

.stat-icon.orange,
.round-icon.orange {
  background: radial-gradient(circle at top, #fff4e9, #ffe1c1);
}

.stat-icon.pink,
.round-icon.pink {
  background: radial-gradient(circle at top, #fff0f7, #ffd9e8);
}

.dashboard-layout {
  display: grid;
  gap: 10px;
  height: calc(100% - 82px);
}

.workspace-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.72fr 1fr;
  gap: 10px;
  align-items: start;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.75fr 0.75fr;
  gap: 10px;
  align-items: start;
}

.side-stack,
.panel-stack,
.stack-list,
.field-stack,
.mini-stack,
.list-stack,
.timeline {
  display: grid;
  gap: 16px;
}

.panel,
.hero-card,
.audio-card {
  padding: 12px 14px;
}

.panel-head,
.section-row,
.card-row,
.audio-meta,
.audio-top,
.grid-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head {
  margin-bottom: 12px;
}

.panel-head h3,
.panel-head h2,
.section-row h2 {
  margin: 0;
}

.section-row p {
  margin: 6px 0 0;
  color: var(--muted);
}

.counter {
  color: var(--muted);
  font-size: 0.86rem;
}

.voice-select-card,
.stack-card,
.tool-card,
.empty-state,
.hero-card,
.timeline-item,
.table-row {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
}

.voice-select-card,
.tool-card {
  padding: 12px 14px;
}

.voice-select-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.voice-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1e8ff, #e2d7ff);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.voice-copy {
  display: grid;
  gap: 4px;
}

.voice-copy strong {
  font-size: 1.05rem;
}

.voice-copy span {
  color: var(--muted);
}

.select-shell,
.field select,
.field input,
.field textarea,
.file-label {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.select-shell {
  padding: 9px 12px;
}

.file-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
}

.full-width {
  width: 100%;
}

.section-title {
  margin: 16px 0 10px;
  font-weight: 700;
}

.slider-list {
  display: grid;
  gap: 10px;
}

.slider-row {
  display: grid;
  grid-template-columns: 78px 1fr 58px;
  gap: 10px;
  align-items: center;
}

.slider-row span,
.small-muted {
  color: var(--muted);
}

.slider-row strong {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.92rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--purple);
}

.accordion-note,
.hint-text,
.small-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.field textarea {
  width: 100%;
  min-height: 98px;
  max-height: 98px;
  resize: none;
  padding: 12px;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--text);
}

.field span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.93rem;
  font-weight: 600;
}

.form-grid,
.controls-grid,
.options-grid,
.cards-grid,
.details-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two,
.controls-grid.two,
.details-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three,
.controls-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid.four,
.controls-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.script-actions,
.button-row,
.meta-row,
.action-row,
.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.effect-list {
  display: grid;
  gap: 8px;
}

.effect-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.effect-item strong,
.stack-card strong,
.tool-card strong {
  display: block;
}

.effect-item span,
.stack-card p,
.stack-card span,
.tool-card span,
.timeline-item p,
.timeline-item span,
.table-row span,
.muted {
  color: var(--muted);
}

.switch {
  position: relative;
  width: 46px;
  height: 28px;
  display: inline-block;
}

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

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #e8e3f8;
  transition: background-color 0.2s ease;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
  box-shadow: 0 5px 16px rgba(38, 22, 84, 0.16);
}

.switch input:checked + .switch-slider {
  background: linear-gradient(135deg, #8d63ff, #6f3dff);
}

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

.generate-box {
  min-height: 118px;
  padding: 16px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfaff, #f8f3ff);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

.spark {
  color: var(--purple);
  font-size: 1.8rem;
}

.generate-box p {
  margin: 0;
}

.audio-card {
  padding: 14px 16px;
}

.audio-top {
  gap: 14px;
}

.audio-top-exact {
  align-items: center;
}

.play-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a5eff, #5f31f5);
  color: #fff;
  box-shadow: 0 16px 28px rgba(109, 61, 255, 0.22);
  cursor: pointer;
}

.wave-pack {
  flex: 1;
  display: grid;
  gap: 8px;
}

.waveform-bars {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
}

.waveform-bars span {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(111, 61, 255, 0.5), rgba(111, 61, 255, 0.14));
}

.progress-slider,
.volume-slider {
  width: 100%;
  margin: 0;
  accent-color: var(--purple);
}

.volume-slider {
  width: 76px;
}

.speaker-icon {
  color: var(--muted);
  font-size: 0.92rem;
}

.time-text {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

audio {
  width: 100%;
  margin: 8px 0;
}

.hidden-audio {
  display: none;
}

.audio-meta {
  align-items: flex-start;
}

.download-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.download-link.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.info-list,
.bullet-list,
.usage-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.usage-list.checks {
  list-style: none;
  padding-left: 0;
}

.usage-list.checks li {
  position: relative;
  padding-left: 22px;
}

.usage-list.checks li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #43c07a;
  font-size: 0.8rem;
}

.stack-card {
  padding: 15px;
  display: grid;
  gap: 10px;
}

.stack-card header,
.table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stack-card audio {
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.88rem;
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.round-icon {
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.hero-visual {
  min-height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(142, 103, 255, 0.26), transparent 40%),
    linear-gradient(135deg, #f8f4ff, #fff 45%, #f3efff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(111, 61, 255, 0.12);
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  right: 24px;
  top: 24px;
  background: radial-gradient(circle at center, rgba(111, 61, 255, 0.1), transparent 70%);
}

.hero-visual::after {
  width: 90px;
  height: 90px;
  left: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.mini-panel {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.mini-panel strong {
  display: block;
  margin-bottom: 6px;
}

.table-wrap {
  display: grid;
  gap: 10px;
}

.table-row {
  padding: 14px 16px;
}

.table-row .meta {
  display: grid;
  gap: 4px;
}

.timeline-item {
  padding: 16px;
  display: grid;
  gap: 8px;
}

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

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

.status-banner {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #faf8ff);
  color: var(--muted);
}

.status-banner.success {
  background: #effcf5;
  border-color: #c7efd8;
  color: #177245;
}

.status-banner.error {
  background: #fff5f7;
  border-color: #ffd1db;
  color: #b42345;
}

.hint-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fcfbff, #f8f4ff);
}

.hint-card strong,
.hint-card p {
  margin: 0;
}

.hint-card p {
  margin-top: 6px;
  color: var(--muted);
}

.modal {
  width: min(860px, calc(100% - 32px));
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(16, 14, 28, 0.38);
  backdrop-filter: blur(5px);
}

.modal-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 30px 60px rgba(18, 16, 34, 0.24);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.page-footer {
  margin-top: 2px;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.dashboard-exact .panel-stack,
.dashboard-exact .side-stack {
  gap: 12px;
}

.dashboard-exact .panel {
  box-shadow: 0 14px 34px rgba(109, 61, 255, 0.06);
}

.dashboard-exact .audio-card {
  min-height: 150px;
}

.dashboard-exact .side-stack .panel {
  min-height: 150px;
}

.dashboard-exact .workspace-grid > .panel {
  min-height: 438px;
}

.dashboard-exact .workspace-grid > .panel-stack > .panel:first-child {
  min-height: 270px;
}

.dashboard-exact .workspace-grid > .panel-stack > .panel:last-child {
  min-height: 150px;
}

.settings-toggle {
  width: 100%;
  padding: 10px 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.record-box {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfbff, #f9f6ff);
  display: grid;
  gap: 12px;
}

.record-copy strong,
.record-copy p {
  margin: 0;
}

.record-copy p {
  margin-top: 6px;
  color: var(--muted);
}

.record-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.record-timer {
  min-width: 54px;
  text-align: center;
  font-weight: 700;
  color: var(--purple);
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  body[data-route="/dashboard"],
  body[data-route="/voice-generator"] {
    overflow: auto;
  }

  body[data-route="/dashboard"] .dashboard-exact {
    width: 100%;
  }

  .workspace-shell,
  .workspace-canvas {
    height: auto;
  }

  .workspace-canvas {
    width: 100%;
    transform: none !important;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workspace-grid,
  .bottom-grid,
  .hero-banner {
    grid-template-columns: 1fr;
  }

  .cards-grid.three,
  .form-grid.four,
  .controls-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-shell {
    height: auto;
    padding: 14px;
    overflow: visible;
  }

  .page-root,
  body[data-route="/dashboard"] .page-root,
  body[data-route="/voice-generator"] .page-root {
    height: auto;
    overflow: visible;
  }

  .stats-grid,
  .cards-grid.two,
  .cards-grid.three,
  .form-grid.two,
  .form-grid.three,
  .form-grid.four,
  .controls-grid.two,
  .controls-grid.three,
  .controls-grid.four,
  .details-grid.two {
    grid-template-columns: 1fr;
  }

  .voice-select-card {
    grid-template-columns: 1fr;
  }

  .audio-meta,
  .topbar,
  .section-row,
  .panel-head,
  .card-row,
  .table-row,
  .timeline-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
