:root {
  color: #edf4f0;
  background: #07100d;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(53, 213, 134, 0.16), transparent 30%),
    radial-gradient(circle at 90% 75%, rgba(26, 128, 255, 0.12), transparent 32%),
    #07100d;
}

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

button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  color: #04100b;
  background: #51e59c;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.06);
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.shell {
  width: min(1640px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.admin-sidebar {
  position: fixed;
  top: 24px;
  bottom: 24px;
  left: max(18px, calc((100vw - 1640px) / 2));
  display: flex;
  width: 220px;
  justify-content: space-between;
  flex-direction: column;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 18px;
  background: rgba(12, 26, 20, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 6px 22px;
}

.sidebar-brand .brand-mark {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 13px;
}

.sidebar-brand strong,
.sidebar-brand small {
  display: block;
}

.sidebar-brand strong {
  font-size: 17px;
}

.sidebar-brand small {
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  border: 1px solid transparent;
  padding: 12px 13px;
  color: #9cafA5;
  background: transparent;
  text-decoration: none;
  text-align: left;
}

.public-tester-page .model-tester-view {
  margin: 0 auto;
}

.sidebar-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #789287;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
}

.sidebar-link.active {
  border-color: rgba(81, 229, 156, 0.2);
  color: #dff9ea;
  background: rgba(81, 229, 156, 0.12);
}

.sidebar-link.active span {
  color: #06140e;
  background: #51e59c;
}

.sidebar-logout {
  display: block;
  width: 100%;
  margin-top: 28px;
  text-align: center;
  text-decoration: none;
}

.admin-content {
  grid-column: 2;
  min-width: 0;
}

.admin-view {
  min-width: 0;
}

.login-card {
  width: min(460px, 100%);
  margin: 10vh auto 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(13, 28, 22, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  color: #06120d;
  background: #51e59c;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 8px;
  color: #51e59c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: 24px;
}

.muted {
  color: #8fa59a;
  line-height: 1.65;
}

.login-card form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: #b9c9c1;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: 0;
  padding: 12px 14px;
  color: #edf4f0;
  background: #091510;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #51e59c;
  box-shadow: 0 0 0 3px rgba(81, 229, 156, 0.1);
}

small {
  color: #748b80;
  font-weight: 500;
}

.error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ff8585;
}

.back-link {
  display: inline-block;
  margin-top: 14px;
  color: #90ad9f;
}

.topbar,
.section-title,
.topbar-actions,
.dialog-head,
.dialog-actions,
.row-actions,
.list-heading-actions,
.pagination {
  display: flex;
  align-items: center;
}

.topbar,
.section-title,
.dialog-head {
  justify-content: space-between;
}

.topbar {
  min-height: 44px;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.topbar h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.topbar-actions,
.dialog-actions,
.row-actions,
.list-heading-actions,
.pagination {
  gap: 10px;
}

.list-heading-actions {
  justify-content: flex-end;
}

.list-heading-actions .muted {
  margin: 0;
}

.secondary,
.ghost,
.mini,
.icon-button {
  color: #dce9e2;
  background: rgba(255, 255, 255, 0.08);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: transparent;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stats article,
.panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(12, 26, 20, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.model-tester-view {
  max-width: 1040px;
}

body.tester-active {
  overflow: hidden;
}

body.tester-active .shell {
  height: 100vh;
  padding-top: 24px;
  padding-bottom: 24px;
}

body.tester-active .model-tester-view {
  display: grid;
  height: calc(100vh - 48px);
  grid-template-rows: auto auto minmax(220px, 1fr);
  gap: 10px;
  overflow: hidden;
}

.model-tester-view h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}

.tester-topbar {
  min-height: 42px;
  align-items: center;
  margin-bottom: 0;
}

.tester-panel {
  margin-top: 0;
  min-height: 0;
  padding: 20px 22px;
  overflow-y: auto;
}

.tester-form {
  display: grid;
  gap: 14px;
}

.tester-form label {
  gap: 7px;
  font-size: 15px;
}

.tester-form label > span {
  font-size: 15px;
  font-weight: 800;
}

.tester-form small {
  font-size: 13px;
}

.tester-form input,
.tester-form select,
.tester-form textarea {
  padding: 11px 15px;
  font-size: 16px;
}

.tester-key-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.tester-key-row button {
  min-width: 128px;
  font-size: 15px;
}

.tester-form textarea {
  height: 100px;
  min-height: 100px;
  resize: none;
  overflow-y: auto;
  line-height: 1.65;
}

.tester-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.tester-actions button {
  padding: 12px 20px;
  font-size: 15px;
}

.tester-result-panel {
  display: flex;
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
  flex-direction: column;
}

.tester-meta {
  max-width: 55%;
  color: #8fa59a;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
  overflow-wrap: anywhere;
}

.tester-output {
  min-height: 0;
  max-height: none;
  flex: 1;
  margin: 20px 0 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
  color: #d9e8e0;
  background: #06100c;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.stats article {
  padding: 22px;
  border-radius: 18px;
}

.stats span {
  display: block;
  margin-bottom: 10px;
  color: #84998f;
  font-size: 13px;
}

.stats strong {
  font-size: 32px;
}

.panel {
  margin-top: 18px;
  padding: 24px;
  border-radius: 22px;
}

.create-form {
  display: grid;
  grid-template-columns:
    minmax(150px, 0.8fr)
    minmax(220px, 1.15fr)
    minmax(140px, 0.5fr)
    minmax(190px, 1fr)
    auto;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}

.create-form > button {
  min-height: 44px;
  margin-top: 25px;
  white-space: nowrap;
}

.create-form input {
  min-height: 44px;
}

.table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 1380px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #7f948a;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: #c9d7d0;
  font-size: 13px;
}

td strong,
td small {
  display: block;
}

td small {
  max-width: 210px;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prefix {
  color: #9ae8bf;
  font-size: 12px;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.badge.active {
  color: #69e8a7;
  background: rgba(55, 209, 130, 0.12);
}

.badge.disabled {
  color: #a7b1ac;
  background: rgba(255, 255, 255, 0.07);
}

.badge.type.nvidia {
  color: #9fc7ff;
  background: rgba(77, 142, 255, 0.13);
}

.badge.type.freeapi {
  color: #b6a3ff;
  background: rgba(133, 99, 255, 0.14);
}

.badge.type.both {
  color: #ffd28a;
  background: rgba(255, 166, 34, 0.11);
}

.mini {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 11px;
  white-space: nowrap;
}

.mini.copy {
  color: #7ff0c0;
  border: 1px solid rgba(83, 226, 164, 0.18);
  background: rgba(55, 209, 130, 0.1);
}

.mini.copy:hover {
  color: #06140e;
  background: #55dfa6;
}

.mini.danger {
  color: #ff9999;
  background: rgba(255, 91, 91, 0.11);
}

.mini.delete {
  color: #ff7d7d;
  border: 1px solid rgba(255, 88, 88, 0.2);
  background: rgba(255, 66, 66, 0.08);
}

.mini.delete:hover {
  color: #fff;
  background: #d94141;
}

.mini.success {
  color: #7becb1;
  background: rgba(55, 209, 130, 0.11);
}

.empty {
  padding: 44px;
  color: #81968c;
  text-align: center;
}

.pagination {
  justify-content: center;
  margin-top: 20px;
}

.pagination .muted {
  min-width: 110px;
  margin: 0;
  text-align: center;
}

@media (min-width: 981px) {
  body.admin-active {
    overflow: hidden;
  }

  body.admin-active .shell {
    height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body.admin-active .dashboard,
  body.admin-active .admin-layout,
  body.admin-active .admin-content,
  body.admin-active .admin-view {
    min-height: 0;
    height: 100%;
  }

  body.admin-active .admin-view {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 10px;
    overflow: hidden;
  }

  body.admin-active .topbar {
    min-height: 46px;
    margin-bottom: 0;
  }

  body.admin-active .topbar h1 {
    font-size: 33px;
  }

  body.admin-active .stats {
    gap: 13px;
    margin-bottom: 0;
  }

  body.admin-active .stats article {
    padding: 12px 18px;
    border-radius: 17px;
  }

  body.admin-active .stats span {
    margin-bottom: 4px;
    font-size: 12px;
  }

  body.admin-active .stats strong {
    font-size: 26px;
    line-height: 1.1;
  }

  body.admin-active .table-panel {
    display: flex;
    min-height: 0;
    margin-top: 0;
    width: 100%;
    padding: 16px 20px 13px;
    overflow: hidden;
    flex-direction: column;
    align-self: start;
  }

  body.admin-active .table-panel .section-title {
    flex: none;
  }

  body.admin-active .table-panel .section-title .eyebrow {
    display: none;
  }

  body.admin-active .table-panel .section-title h2 {
    font-size: 22px;
  }

  body.admin-active .table-panel .section-title button,
  body.admin-active .topbar-actions button {
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13px;
  }

  body.admin-active .table-wrap {
    min-height: 0;
    max-height: min(680px, calc(100vh - 300px));
    flex: none;
    margin-top: 10px;
    overflow: auto;
  }

  body.admin-active .table-wrap thead {
    position: sticky;
    z-index: 1;
    top: 0;
    background: #0b1b14;
  }

  body.admin-active .pagination {
    flex: none;
    margin-top: 9px;
    gap: 9px;
  }

  body.admin-active .pagination button {
    padding: 9px 15px;
    border-radius: 10px;
    font-size: 13px;
  }

  body.admin-active .pagination .muted {
    min-width: 180px;
    font-size: 12px;
    line-height: 1.4;
  }

  body.admin-active th,
  body.admin-active td {
    padding: 11px 12px;
    line-height: 1.3;
  }

  body.admin-active th {
    font-size: 11px;
  }

  body.admin-active td {
    font-size: 13px;
  }

  body.admin-active td small {
    margin-top: 3px;
    line-height: 1.25;
  }

  body.admin-active .mini {
    padding: 8px 10px;
    font-size: 11px;
  }

  body.admin-active .badge {
    padding: 6px 9px;
    font-size: 11px;
  }

  body.admin-active .prefix {
    font-size: 12px;
  }
}

dialog {
  width: min(520px, calc(100% - 28px));
  border: 0;
  padding: 0;
  color: #edf4f0;
  border-radius: 22px;
  background: #0d1d16;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

dialog.logs-dialog {
  width: min(980px, calc(100% - 28px));
}

dialog.routes-dialog {
  width: min(760px, calc(100% - 28px));
}

dialog.channel-status-dialog {
  width: min(1180px, calc(100% - 28px));
}

dialog::backdrop {
  background: rgba(0, 6, 4, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-card {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.dialog-head {
  align-items: flex-start;
}

.dialog-description {
  margin: 8px 0 0;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field input {
  width: auto;
  margin: 0;
}

.icon-button {
  padding: 2px 10px 7px;
  border-radius: 10px;
  font-size: 28px;
  line-height: 1;
}

.dialog-actions {
  justify-content: flex-end;
  margin-top: 6px;
}

.warning {
  margin-bottom: 0;
  border: 1px solid rgba(255, 187, 72, 0.24);
  border-radius: 12px;
  padding: 12px;
  color: #ffd28a;
  background: rgba(255, 166, 34, 0.08);
  line-height: 1.55;
}

.log-status {
  margin: 8px 0 0;
}

.log-toolbar,
.log-toolbar > div,
.log-card header,
.log-meta {
  display: flex;
  align-items: center;
}

.log-toolbar {
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.12);
}

.log-toolbar p {
  margin: 0;
}

.log-toolbar > div,
.log-meta {
  gap: 9px;
}

.log-list {
  display: grid;
  max-height: min(64vh, 720px);
  gap: 14px;
  overflow-y: auto;
  padding-right: 4px;
}

.log-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px;
  background: #091510;
}

.log-card header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.log-meta {
  flex-wrap: wrap;
  color: #82988d;
  font-size: 12px;
}

.log-meta code {
  color: #9ae8bf;
}

.log-card section + section {
  margin-top: 12px;
}

.log-card section > span {
  display: block;
  margin-bottom: 6px;
  color: #51e59c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.log-card pre {
  max-height: 260px;
  margin: 0;
  overflow: auto;
  border-radius: 10px;
  padding: 12px;
  color: #d7e4dd;
  background: #06100c;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.log-empty {
  padding: 30px;
}

.channel-status-toolbar,
.channel-user-card > header,
.channel-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.channel-status-toolbar {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.12);
}

.channel-status-toolbar p {
  margin: 0;
}

.channel-status-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.channel-status-summary article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  background: #091510;
}

.channel-status-summary span,
.channel-status-summary strong {
  display: block;
}

.channel-status-summary span {
  color: #82988d;
  font-size: 12px;
}

.channel-status-summary strong {
  margin-top: 5px;
  color: #aaf0ca;
  font-size: 24px;
}

.channel-status-list {
  display: grid;
  max-height: min(62vh, 760px);
  gap: 16px;
  overflow-y: auto;
  padding-right: 4px;
}

.channel-user-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px;
  background: #091510;
}

.channel-user-card > header {
  align-items: flex-start;
  margin-bottom: 14px;
}

.channel-user-card header small {
  display: block;
  margin-top: 5px;
  color: #82988d;
}

.channel-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 10px;
}

.channel-route-card {
  border: 1px solid rgba(81, 229, 156, 0.14);
  border-radius: 13px;
  padding: 13px;
  background: rgba(55, 209, 130, 0.045);
}

.channel-route-card.cooling {
  border-color: rgba(255, 166, 34, 0.28);
  background: rgba(255, 166, 34, 0.075);
}

.channel-route-card code,
.channel-route-card p,
.channel-route-card small {
  display: block;
  margin-top: 8px;
}

.channel-route-card code {
  color: #9ae8bf;
}

.channel-route-model {
  margin-top: 8px;
  color: #cfe0d7;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.channel-route-card p {
  margin-bottom: 0;
  color: #e6eee9;
  font-size: 13px;
}

.channel-route-card small {
  color: #82988d;
}

.badge.cooling {
  color: #ffd28a;
  background: rgba(255, 166, 34, 0.14);
}

.channel-config-error {
  border-radius: 12px;
  padding: 12px;
  color: #ffb2b2;
  background: rgba(255, 66, 66, 0.08);
}

#generatedKey {
  display: block;
  overflow-wrap: anywhere;
  border: 1px solid rgba(81, 229, 156, 0.24);
  border-radius: 14px;
  padding: 18px;
  color: #aaf0ca;
  background: #07110d;
  font-size: 14px;
  line-height: 1.7;
  user-select: all;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  max-width: min(380px, calc(100% - 48px));
  border: 1px solid rgba(81, 229, 156, 0.25);
  border-radius: 12px;
  padding: 13px 16px;
  color: #c9f7df;
  background: #10251b;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.toast.error-toast {
  border-color: rgba(255, 107, 107, 0.3);
  color: #ffb2b2;
  background: #291313;
}

[hidden] {
  display: none !important;
}

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

  .admin-sidebar {
    position: static;
    z-index: 2;
    width: auto;
    min-height: 0;
    overflow-y: visible;
    flex-direction: row;
    align-items: center;
  }

  .admin-content {
    grid-column: 1;
  }

  body.tester-active {
    overflow: auto;
  }

  body.tester-active .shell {
    height: auto;
    padding-top: 22px;
    padding-bottom: 64px;
  }

  body.tester-active .model-tester-view {
    display: block;
    height: auto;
    overflow: visible;
  }

  .tester-panel,
  .tester-result-panel {
    overflow: visible;
  }

  .tester-result-panel {
    min-height: 290px;
    margin-top: 18px;
  }

  .tester-output {
    min-height: 205px;
    max-height: 520px;
  }

  .admin-sidebar > div,
  .sidebar-nav {
    display: flex;
    align-items: center;
  }

  .sidebar-brand {
    padding: 0 18px 0 0;
  }

  .sidebar-nav {
    gap: 8px;
  }

  .sidebar-link {
    width: auto;
  }

  .sidebar-logout {
    width: auto;
    margin: 0;
  }

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

  .create-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 22px, 1400px);
    padding-top: 22px;
  }

  .channel-status-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-sidebar,
  .admin-sidebar > div {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-sidebar {
    gap: 12px;
  }

  .sidebar-brand {
    padding: 0 0 12px;
  }

  .sidebar-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sidebar-link,
  .sidebar-logout {
    width: 100%;
  }

  .tester-key-row {
    grid-template-columns: 1fr;
  }

  .tester-meta {
    max-width: none;
    text-align: left;
  }

  .tester-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .channel-status-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .login-card,
  .panel {
    padding: 20px;
  }

  .topbar,
  .section-title {
    display: grid;
    gap: 14px;
  }

  .list-heading-actions {
    justify-content: space-between;
  }

  .log-toolbar,
  .log-card header {
    align-items: stretch;
    flex-direction: column;
  }

  .stats,
  .create-form {
    grid-template-columns: 1fr;
  }

  .create-form > button {
    margin-top: 0;
  }

  .topbar-actions button {
    flex: 1;
  }
}
