:root {
  --bg: #1c1b18;
  --sidebar: #181715;
  --surface: #262522;
  --surface-alt: #2e2c28;
  --surface-hover: #37342f;
  --stroke: #3e3b35;
  --stroke-strong: #565149;
  --text: #efece2;
  --text-dim: #b5b0a4;
  --text-mute: #858074;
  --inverse: #1c1a18;
  --accent: #da7756;
  --accent-dim: #b25c3f;
  --accent-text: #fdf6f2;
  --danger: #d6644e;
  --success: #7aa874;
  --sidebar-width: 280px;
  --topbar-height: 56px;
  --page-pad: 24px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

button:disabled,
textarea:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.splash,
.auth-screen {
  min-height: 100%;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.splash h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.splash p {
  color: var(--text-dim);
}

.auth-card {
  width: min(420px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 24px;
}

.auth-card h1 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.auth-card p {
  margin: 0 0 18px;
  color: var(--text-dim);
}

.auth-tabs,
.segmented {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

.auth-tabs button,
.segmented button {
  flex: 1;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
}

.auth-tabs button.active,
.segmented button.active {
  background: var(--surface-hover);
  color: var(--text);
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.field label {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field textarea,
.search-input,
.composer-input,
.model-search {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--text);
  outline: 0;
}

.field input,
.search-input,
.model-search {
  height: 42px;
  padding: 0 13px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
  padding: 12px 13px;
}

.field input:focus,
.field textarea:focus,
.composer-input:focus,
.model-search:focus {
  border-color: var(--accent);
}

/* Inside the expanding search box the input is borderless — the box draws the
   border/background — so it fills the remaining width flush. */
.search-box .search-input {
  flex: 1;
  min-width: 0;
  height: 32px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.primary-action,
.accent-action,
.ghost-action,
.outline-action,
.danger-action {
  min-height: 38px;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 650;
}

.primary-action {
  background: var(--text);
  color: var(--inverse);
}

.accent-action {
  background: var(--accent);
  color: var(--accent-text);
}

.ghost-action {
  background: var(--surface-hover);
  color: var(--text);
}

.outline-action {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.danger-action {
  background: color-mix(in srgb, var(--danger) 18%, transparent);
  color: var(--danger);
}

.auth-error,
.inline-error {
  color: var(--danger);
  min-height: 20px;
  font-size: 13px;
}

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

.sidebar {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--sidebar);
  border-right: 1px solid var(--stroke);
}

.sidebar.collapsed {
  align-items: center;
}

.brand-row,
.row,
.nav-row,
.profile-row,
.topbar,
.composer-row,
.message-line,
.card-head,
.modal-head,
.stats-row {
  display: flex;
  align-items: center;
}

.brand-row {
  height: 36px;
  gap: 8px;
}

.brand {
  flex: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

/* Search that expands out of the search icon (Roblox parity). */
.search-box {
  flex: 1;
  min-width: 0;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px 0 10px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--surface-alt);
  transform-origin: right center;
  animation: search-expand 180ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

.search-box .icon {
  color: var(--text-mute);
}

@keyframes search-expand {
  from {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
}

.icon-btn:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.icon-btn.accent {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex: none;
  background-color: currentColor;
  -webkit-mask-image: var(--icon);
  mask-image: var(--icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

img.icon {
  background-color: transparent;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.new-chat {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 18px;
  padding: 0 14px;
  background: var(--sidebar);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-weight: 650;
}

.new-chat:hover {
  background: var(--surface);
}

.nav {
  display: grid;
  gap: 2px;
}

.nav-row,
.chat-row {
  width: 100%;
  min-height: 36px;
  gap: 10px;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: var(--text-dim);
  text-align: left;
}

.nav-row.active,
.chat-row.active {
  background: var(--surface-hover);
  color: var(--text);
}

.nav-row:hover,
.chat-row:hover {
  background: color-mix(in srgb, var(--surface-hover) 55%, transparent);
}

.session-list {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding-right: 2px;
}

.group-label {
  height: 26px;
  display: flex;
  align-items: end;
  padding: 0 12px 4px;
  color: var(--text-mute);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.chat-row {
  position: relative;
  justify-content: flex-start;
}

.chat-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chat-actions {
  display: none;
  gap: 1px;
}

.chat-row:hover .chat-actions,
.chat-row.pinned .chat-actions {
  display: flex;
}

.chat-row.renaming {
  padding: 0 4px;
}

.rename-input {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  padding: 0 8px;
  background: var(--surface-alt);
  border: 1px solid var(--accent);
  color: var(--text);
  outline: 0;
}

.profile-row {
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  padding: 6px;
  background: transparent;
  color: var(--text);
}

.profile-row:hover {
  background: var(--surface);
}

.avatar,
.lab-avatar {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 800;
  overflow: hidden;
}

.avatar {
  width: 36px;
  height: 36px;
}

.lab-avatar {
  width: 30px;
  height: 30px;
  background: var(--surface-hover);
  color: var(--text);
  font-size: 12px;
}

.lab-mark {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

.plan-text {
  flex: 1;
  display: grid;
  gap: 2px;
  min-width: 0;
  justify-items: start;
  text-align: left;
}

.plan-text strong,
.plan-text span {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.plan-text span {
  color: var(--text-mute);
  font-size: 12px;
}

.profile-gear {
  flex: none;
  display: grid;
  place-items: center;
  color: var(--text-mute);
}

.main {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.topbar {
  height: var(--topbar-height);
  min-height: var(--topbar-height);
  gap: 8px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--stroke);
}

.mobile-menu,
.mobile-only {
  display: none;
}

.top-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 650;
}

.model-pill {
  max-width: 280px;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 10px 0 8px;
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
}

.model-pill span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.empty-chat {
  flex: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: var(--page-pad);
}

.empty-chat h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
}

.home-composer {
  width: min(760px, 100%);
  min-height: 126px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px;
}

.home-composer textarea {
  height: 62px;
  resize: none;
}

.composer-input {
  border: 0;
  background: transparent;
  min-height: 42px;
  padding: 8px 4px;
  resize: none;
}

.composer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spacer {
  flex: 1;
}

.suggestions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(760px, 100%);
}

.chat-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: var(--page-pad);
}

.messages {
  display: grid;
  gap: 4px;
}

.message-wrap {
  display: grid;
  gap: 2px;
}

.message-line {
  align-items: flex-start;
  gap: 10px;
}

.message-line.user {
  justify-content: flex-end;
}

.message-bubble {
  max-width: min(74%, 640px);
  padding: 11px 14px;
  border-radius: 18px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.message-bubble.user {
  background: #3a3834;
  color: var(--text);
}

.message-bubble.assistant {
  background: #282724;
  border: 1px solid var(--stroke);
  color: var(--text);
}

.message-bubble p {
  margin: 0 0 10px;
}

.message-bubble p:last-child {
  margin-bottom: 0;
}

.message-bubble code {
  background: var(--surface-hover);
  border-radius: 5px;
  padding: 1px 5px;
}

.message-bubble pre {
  overflow: auto;
  background: #171614;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 12px;
}

.message-tools {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--text-mute);
  opacity: 0;
}

.message-wrap:hover .message-tools {
  opacity: 1;
}

.message-tools.user {
  justify-content: flex-end;
}

.message-tools.assistant {
  padding-left: 40px;
}

.meta {
  color: var(--text-mute);
  font-size: 12px;
  padding: 0 6px;
}

.typing {
  width: 64px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
}

.composer-shell {
  min-height: 88px;
  padding: 16px var(--page-pad);
}

.composer-box {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 12px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
}

.composer-box textarea {
  flex: 1;
  height: 42px;
  min-height: 42px;
}


.panel {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

.muted {
  color: var(--text-dim);
}

.tiny {
  color: var(--text-mute);
  font-size: 12px;
}

/* ── Settings modal (Roblox settingsModal parity) ─────────────────────────── */
/* .modal.settings-modal (specificity 0,2,0) so it beats the base .modal rule
   defined later in the file, which would otherwise force flex-direction column. */
.modal.settings-modal {
  width: min(720px, calc(100vw - 32px));
  height: min(500px, calc(100vh - 48px));
  max-height: min(500px, calc(100vh - 48px));
  flex-direction: row;
  overflow: hidden;
}

.settings-nav {
  width: 200px;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 10px;
  border-right: 1px solid var(--stroke);
}

.settings-nav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dim);
  text-align: left;
  font-size: 14px;
}

.settings-nav-tab:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--surface-hover) 55%, transparent);
}

.settings-nav-tab.active {
  background: var(--surface-hover);
  color: var(--text);
  font-weight: 600;
}

.settings-content {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
}

.settings-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.settings-scroll {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.settings-title {
  font-size: 20px;
  font-weight: 700;
}

.settings-section-header {
  font-size: 16px;
  font-weight: 700;
  padding-top: 8px;
}

.settings-row {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 14px;
}

.settings-row-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.settings-row-label {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.settings-row-label strong {
  font-weight: 600;
}

.settings-control {
  width: min(260px, 55%);
  height: 38px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--text);
  padding: 0 12px;
  outline: 0;
}

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

.avatar-light {
  background: #dcd9ce;
  color: #1c1a18;
}

.settings-block {
  display: grid;
  gap: 8px;
  padding-top: 6px;
}

.settings-block-title {
  font-weight: 600;
}

.settings-instructions {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--text);
  padding: 12px;
  outline: 0;
}

.settings-instructions:focus {
  border-color: var(--accent);
}

.settings-save-btn {
  align-self: stretch;
  margin-top: 4px;
}

.settings-save-btn.disabled {
  background: var(--surface-hover);
  color: var(--text-mute);
  cursor: default;
  opacity: 1;
}

.settings-model-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 12px;
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

.usage-chart {
  display: grid;
  gap: 8px;
}

.chart-plot {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 118px;
  padding: 14px;
  background: var(--surface-alt);
  border-radius: 12px;
}

.chart-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}

.chart-bar {
  width: 100%;
  border-radius: 4px;
  background: var(--surface-hover);
}

.chart-bar.on {
  background: var(--accent);
}

.chart-label {
  color: var(--text-mute);
  font-size: 12px;
}

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

.persona-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 10px 0 12px;
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  text-align: left;
}

.persona-row:hover {
  background: var(--surface-hover);
}

.persona-text {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.persona-edit {
  flex: none;
  height: 32px;
  display: inline-flex;
  align-items: center;
}

.privacy-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--surface-alt);
  border-radius: 12px;
}

.privacy-card strong {
  font-weight: 600;
}

.settings-section {
  padding: 24px;
}

.settings-section h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.stats-row {
  justify-content: space-between;
  min-height: 24px;
  gap: 12px;
}

.stats-row span:first-child {
  color: var(--text-dim);
}

.stats-row strong {
  text-align: right;
}

.meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-hover);
}

.meter div {
  height: 100%;
  border-radius: inherit;
  background: var(--text);
}

.meter.danger div {
  background: var(--danger);
}

.modal-backdrop,
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgb(0 0 0 / 0.45);
}

.modal-backdrop.pop,
.drawer-backdrop {
  animation: fade-in 140ms ease;
}

.modal {
  position: fixed;
  z-index: 51;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgb(0 0 0 / 0.35);
}

.modal.pop {
  animation: modal-pop 160ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal.small {
  width: min(460px, calc(100vw - 32px));
}

.modal-head {
  min-height: 58px;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 0 24px;
  border-bottom: 1px solid var(--stroke);
}

.modal-head h2 {
  margin: 0;
  font-size: 20px;
}

.modal-body {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 24px 24px;
}

.model-list {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.model-row {
  display: grid;
  grid-template-columns: 26px 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.model-row:hover,
.model-row.active {
  background: var(--surface-hover);
}

.model-row-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 10px;
  border-radius: 10px;
  background: transparent;
  text-align: left;
}

.model-row-btn:hover {
  background: var(--surface-hover);
}

.star-btn {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  color: var(--text-mute);
}

.star-btn:hover {
  color: var(--text);
  background: transparent;
}

.star-btn.favorited {
  color: var(--accent);
}

.model-text {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.model-name,
.model-sub {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--surface-hover);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
}

.badge.accent {
  background: var(--accent);
  color: var(--accent-text);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translateX(-50%);
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--surface-hover);
  color: var(--text);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.3);
  border: 1px solid var(--stroke-strong);
  animation: toast-in 220ms cubic-bezier(0.2, 0.8, 0.3, 1);
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--text-dim);
}

.toast-error .toast-dot {
  background: var(--danger);
}

.toast-success .toast-dot {
  background: var(--success);
}

.toast-premium .toast-dot {
  background: var(--accent);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.empty-note {
  min-height: 168px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

@media (max-width: 1023px) {
  :root {
    --sidebar-width: 248px;
    --page-pad: 20px;
  }
}

@media (max-width: 639px) {
  :root {
    --page-pad: 14px;
  }

  .app-shell {
    display: block;
  }

  .mobile-menu,
  .mobile-only {
    display: grid;
  }

  .sidebar {
    position: fixed;
    z-index: 60;
    inset: 0 auto 0 0;
    width: min(86vw, 320px);
    transform: translateX(-105%);
    transition: transform 160ms ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .drawer-backdrop {
    display: block;
  }

  .model-pill {
    max-width: 170px;
  }

  .empty-chat h2 {
    font-size: 28px;
  }

  .message-bubble {
    max-width: 90%;
  }

  .modal {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
  }

  .modal.settings-modal {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
    flex-direction: column;
  }

  .settings-nav {
    width: 100%;
    flex-direction: row;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--stroke);
  }

  .settings-nav-tab {
    flex: none;
    white-space: nowrap;
  }

  .settings-nav-tab span {
    white-space: nowrap;
  }

  .settings-control {
    width: 150px;
  }
}
