:root {
  --bg: #f5f6f2;
  --white: #fff;
  --ink: #23362e;
  --muted: #788079;
  --line: #e3e7df;
  --green: #244f3a;
  --lime: #d3efab;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
button {
  transition:
    background 0.15s,
    transform 0.15s;
}
button:not(:disabled):hover {
  filter: brightness(0.96);
}
a {
  color: var(--green);
}
[hidden] {
  display: none !important;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 235px;
  background: #142e28;
  color: #c6d0c6;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
}
.brand {
  font-size: 37px;
  font-weight: 750;
  letter-spacing: -2px;
  color: #f7faf3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 10px;
}
.brand-dot {
  color: #c1e49a;
  margin-left: -12px;
}
.brand-icon {
  background: #c6e89e;
  border-radius: 9px;
  color: #203b2d;
  font-size: 36px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 39px;
  font-weight: 500;
}
.workspace-label {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #7c9488;
  margin: 36px 11px 19px;
}
.nav {
  border: 0;
  background: none;
  color: #a4b6aa;
  padding: 13px 13px;
  display: flex;
  gap: 13px;
  text-align: left;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 6px;
  font-size: 13px;
}
.nav span {
  font-size: 17px;
  width: 18px;
}
.nav.active {
  background: #2a4638;
  color: #e3f2d7;
}
.nav small {
  margin-left: auto;
  background: #3a5544;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
}
.sidebar-bottom {
  margin-top: auto;
}
.release {
  font-size: 9px;
  letter-spacing: 1px;
  border: 1px solid #385045;
  border-radius: 5px;
  padding: 12px 9px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.release b {
  margin-left: auto;
  color: #cbdfa4;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9fc96d;
}
.sidebar-bottom p {
  font-size: 12px;
  line-height: 1.8;
  color: #789486;
  margin: 18px 10px 24px;
}
.account {
  display: flex;
  gap: 10px;
  align-items: center;
  background: none;
  border: 0;
  border-top: 1px solid #2b473a;
  width: 100%;
  padding: 20px 4px 0;
  color: #c9d6cc;
  text-align: left;
  font-size: 12px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #365142;
  border-radius: 50%;
  color: #c5e4a5;
}
.account small {
  display: block;
  font-size: 10px;
  color: #799484;
  margin-top: 4px;
}
.account > span:last-child {
  margin-left: auto;
}
.app {
  margin-left: 235px;
}
.topbar {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: #fafbf8;
  font-size: 12px;
}
.crumb {
  color: #8a9189;
}
.slash {
  margin: 0 15px;
  color: #b6bdb4;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.browser-indicator {
  font-size: 11px;
  color: #7c897c;
}
.browser-indicator:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #80a660;
  margin-right: 7px;
}
main {
  padding: 35px 42px 0;
  max-width: 1580px;
  margin: auto;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #87947e;
}
h1 {
  font-size: 34px;
  font-weight: 550;
  letter-spacing: -1.4px;
  margin: 10px 0;
}
h1 span {
  color: #79a654;
}
.page-heading p {
  color: #7d857c;
  margin: 0;
  font-size: 13px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border: 1px solid #d9dfd3;
  background: #fff;
  color: #3c4e3f;
  border-radius: 5px;
  font-weight: 550;
  font-size: 12px;
  white-space: nowrap;
}
.button.primary {
  background: var(--green);
  color: #f7fff0;
  border-color: var(--green);
}
.button.dark {
  background: #2c3e33;
  color: #fff;
  border-color: #2c3e33;
}
.button.small {
  font-size: 11px;
  padding: 8px 12px;
}
.button.full {
  width: 100%;
}
.text-button {
  background: none;
  border: 0;
  color: #557248;
  padding: 0;
  font-size: 11px;
  font-weight: 550;
}
.notice {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: #edf2e6;
  border: 1px solid #dfe7d4;
  border-radius: 6px;
  font-size: 11px;
  color: #738166;
  margin-bottom: 24px;
}
.notice strong {
  color: #4d6240;
  margin-right: 4px;
  font-weight: 600;
}
.notice span:not(.notice-icon) {
  color: #8a947d;
}
.notice-icon {
  border: 1px solid #8a9d73;
  border-radius: 50%;
  font-size: 10px;
  width: 16px;
  height: 16px;
  text-align: center;
  flex-shrink: 0;
}
.notice button {
  margin-left: auto;
  flex-shrink: 0;
  color: #576d42;
  background: none;
  border: 0;
  font-size: 11px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 3px #15231702;
}
.programmer-card,
.chip-card {
  padding: 22px 23px 0;
}
.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  color: #8b9584;
  border: 1px solid #e3e8db;
  padding: 4px 5px;
  border-radius: 4px;
}
.badge {
  font-family: var(--mono);
  letter-spacing: 0.5px;
  font-size: 8px;
  background: #f2f4f0;
  border: 1px solid #e6eae0;
  color: #8c9585;
  padding: 5px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.badge.connected {
  background: #e8f2dd;
  color: #53783d;
}
label {
  display: block;
  font-size: 11px;
  color: #65735f;
  margin-bottom: 8px;
}
input,
select,
textarea {
  background: #fcfdfb;
  border: 1px solid #e0e5da;
  border-radius: 5px;
  color: #475842;
  width: 100%;
  padding: 11px 12px;
  font-size: 12px;
}
select {
  padding-right: 20px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #9cbc80;
}
.programmer-visual {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 163px;
  padding: 15px 8px;
}
.programmer-board {
  position: relative;
  width: 85px;
  height: 114px;
  background: #234a3c;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 3px 4px 0 #dde5d8;
  border: 1px solid #43674e;
}
.programmer-board i {
  position: absolute;
  top: -12px;
  left: 27px;
  width: 28px;
  height: 20px;
  background: linear-gradient(90deg, #aab4a8, #e1e7db, #a9b3a7);
  border: 1px solid #97a390;
  border-radius: 2px;
}
.zif {
  position: absolute;
  left: 19px;
  right: 19px;
  top: 24px;
  height: 60px;
  background: #aecf92;
  border: 4px solid #83ad6c;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.zif span {
  display: block;
  background: #314a2c;
  height: 2px;
  border-left: 5px solid #d8e7cc;
  border-right: 5px solid #d8e7cc;
}
.programmer-board b {
  font: 6px var(--mono);
  color: #a6c293;
  position: absolute;
  bottom: 12px;
  left: 13px;
  letter-spacing: 1px;
}
.programmer-board em {
  position: absolute;
  bottom: 12px;
  right: 8px;
  width: 4px;
  height: 4px;
  background: #bfe386;
  border-radius: 50%;
}
.usb-line {
  display: none;
}
.device-copy strong {
  display: block;
  font-size: 12px;
  font-weight: 550;
  margin-bottom: 9px;
}
.device-copy span {
  display: block;
  color: #959b8f;
  font-size: 11px;
  line-height: 1.8;
  max-width: 215px;
}
.card-foot {
  border-top: 1px solid #edf0e8;
  margin: 20px -23px 0;
  padding: 13px 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #979f90;
  font-size: 10px;
  background: #fdfefb;
}
.dot {
  background: #a5b692;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
#chip-select {
  margin-top: 8px;
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 11px;
}
.chip-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 19px 0 16px;
}
.chip-details > div {
  border-right: 1px solid #edf0e8;
  padding-left: 15px;
}
.chip-details > div:first-child {
  padding-left: 0;
}
.chip-details > div:last-child {
  border: 0;
}
.chip-details span {
  font: 8px var(--mono);
  letter-spacing: 1px;
  display: block;
  color: #99a18f;
  margin-bottom: 8px;
}
.chip-details strong {
  font: 12px var(--mono);
  color: #4c6043;
}
.orientation {
  display: flex;
  align-items: center;
  background: #f6f8f1;
  border: 1px solid #e8ecdf;
  border-radius: 5px;
  padding: 4px 9px 5px 0;
  margin-bottom: 20px;
}
.orientation svg {
  width: 155px;
  min-width: 115px;
  height: 109px;
}
.orientation strong {
  font-size: 11px;
  font-weight: 600;
}
.orientation p {
  font-size: 10px;
  color: #8b967e;
  line-height: 1.7;
  margin: 7px 0;
}
.orientation .text-button {
  font-size: 10px;
}
.operation-card {
  margin: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 23px;
  flex-wrap: wrap;
  gap: 15px;
}
.operation-card p {
  color: #919b88;
  font-size: 10px;
  margin: 9px 0 0 34px;
}
.operation-buttons {
  display: flex;
  gap: 9px;
}
.operation-buttons .button {
  font-size: 11px;
  padding: 10px 13px;
}
progress {
  width: 100%;
  height: 6px;
  accent-color: #658f43;
}
.image-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 23px;
  gap: 12px;
}
.image-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.image-heading h2 {
  font-size: 12px;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-symbol {
  color: #809374;
  font-size: 20px;
}
.image-actions {
  gap: 18px !important;
}
.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
  gap: 25px;
}
.tab {
  border: 0;
  background: none;
  padding: 13px 0;
  color: #8a9581;
  font-size: 11px;
  border-bottom: 2px solid transparent;
}
.tab.active {
  border-color: #5c8046;
  color: #3b6033;
  font-weight: 600;
}
.tab span {
  margin-left: 5px;
  color: #a2ac97;
}
.empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 39px 15px 32px;
}
.empty-chip {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 27px;
  background: #f6f8f1;
  border: 1px solid #e6eadf;
  border-radius: 9px;
  color: #9bb388;
}
.empty-state h3 {
  font-size: 13px;
  font-weight: 550;
  margin: 18px 0 8px;
}
.empty-state p {
  font-size: 11px;
  color: #929d87;
  margin: 0 0 19px;
}
.empty-state > span {
  font-size: 9px;
  color: #a1aa97;
  margin-top: 12px;
}
.buffer-footer {
  border-top: 1px solid #edf0e7;
  background: #fcfdf9;
  display: flex;
  justify-content: space-between;
  padding: 12px 22px;
  color: #99a38e;
  font: 9px var(--mono);
}
.buffer-footer i {
  width: 4px;
  height: 4px;
  margin-right: 5px;
}
footer {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  color: #a1aa99;
  font-size: 9px;
}
footer > span:first-child {
  font: 8px var(--mono);
  letter-spacing: 1px;
}
footer b {
  margin: 0 9px;
  font-weight: 400;
}
footer .text-button {
  font-size: 9px;
}
#bridge-fields {
  margin-top: 13px;
}
#bridge-fields label {
  margin-top: 10px;
}
.panel {
  padding: 22px;
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  flex-wrap: wrap;
}
.toolbar input {
  width: 150px;
}
.toolbar label {
  margin: 0;
}
.toolbar span {
  font: 10px var(--mono);
  color: #8d9984;
  margin-left: auto;
}
.hex-table {
  width: 100%;
  font: 11px var(--mono);
  border-collapse: collapse;
  white-space: nowrap;
}
.hex-table th {
  color: #9aa68f;
  font-weight: 400;
  text-align: left;
  font-size: 10px;
  padding: 7px 0 13px;
}
.hex-table td {
  padding: 3px 0;
}
.hex-table td:first-child {
  color: #97a389;
  padding-right: 14px;
}
.hex-byte {
  border: 0;
  background: transparent;
  font: 11px var(--mono);
  padding: 3px 4px;
  color: #54664a;
  border-radius: 2px;
}
.hex-byte.changed {
  background: #e6edba;
  color: #546022;
}
.hex-byte:hover {
  background: #dceacd;
}
.ascii {
  padding-left: 15px !important;
  color: #a1ac96;
  letter-spacing: 1px;
}
.hex-scroll {
  overflow-x: auto;
}
.raw {
  max-height: 350px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-all;
  font: 12px/1.7 var(--mono);
  color: #6c7e5c;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.stat {
  background: #f5f8ef;
  border: 1px solid #e7eddd;
  border-radius: 5px;
  padding: 15px;
}
.stat span {
  display: block;
  color: #8a987c;
  font-size: 10px;
  margin-bottom: 9px;
}
.stat strong {
  font: 17px var(--mono);
}
.entropy {
  height: 100px;
  display: flex;
  gap: 2px;
  align-items: flex-end;
  background: repeating-linear-gradient(
    0deg,
    #eef1e9 0,
    #eef1e9 1px,
    transparent 1px,
    transparent 25px
  );
  padding-top: 5px;
  margin: 16px 0;
}
.entropy i {
  flex: 1;
  background: #92b977;
  min-height: 1px;
}
.section-title {
  font-size: 12px;
  margin: 22px 0 12px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.data-table th {
  text-align: left;
  font-size: 10px;
  color: #8d9980;
  font-weight: 500;
  background: #f8faf4;
}
.data-table td,
.data-table th {
  padding: 13px 15px;
  border-bottom: 1px solid #e9ede3;
}
.data-table code {
  font: 10px var(--mono);
  word-break: break-all;
}
.data-table td {
  color: #68785e;
}
.table-wrap {
  overflow-x: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 17px 0;
}
.hint {
  font-size: 11px;
  line-height: 1.8;
  color: #87957b;
}
.result {
  padding: 14px;
  background: #eff5e6;
  border-radius: 4px;
  font: 12px/1.7 var(--mono);
  margin-top: 12px;
  word-break: break-all;
}
.hash-list {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 9px;
  font: 10px var(--mono);
  word-break: break-all;
  color: #758367;
}
.catalog-toolbar {
  padding: 20px;
  display: flex;
  gap: 15px;
}
.catalog-toolbar input {
  max-width: 400px;
}
.catalog-toolbar select {
  width: 190px;
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.catalog-item {
  padding: 20px;
}
.catalog-item h3 {
  font: 15px var(--mono);
  margin: 12px 0;
}
.catalog-item p {
  font-size: 11px;
  line-height: 1.7;
  color: #8a957e;
}
.catalog-item .button {
  margin-top: 10px;
}
.archive-item {
  padding: 20px;
  margin-top: 12px;
}
.archive-item h3 {
  font-size: 14px;
  margin: 0 0 9px;
}
.archive-item p {
  font-size: 11px;
  color: #89957d;
}
.archive-item code {
  display: block;
  color: #89957d;
  font: 10px var(--mono);
  word-break: break-all;
  margin-bottom: 15px;
}
.archive-item button {
  margin-right: 8px;
}
.notice.warning {
  background: #fff7e7;
  border-color: #ebdfbd;
  color: #8f7b47;
}
dialog {
  border: 1px solid #dce4d3;
  border-radius: 10px;
  box-shadow: 0 15px 70px #17312433;
  max-width: 630px;
  width: calc(100% - 32px);
  padding: 32px;
  color: var(--ink);
}
dialog::backdrop {
  background: #12251e66;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 21px;
  margin-bottom: 18px;
}
dialog p,
dialog li {
  font-size: 12px;
  line-height: 1.8;
  color: #758269;
}
dialog label {
  margin-top: 16px;
}
dialog .button {
  margin-top: 20px;
}
dialog pre {
  background: #f1f5eb;
  padding: 14px;
  overflow: auto;
  font-size: 11px;
}
dialog code {
  font-family: var(--mono);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: none;
  color: #8c987f;
  font-size: 24px;
}
.modal-actions {
  display: flex;
  gap: 12px;
}
.error-text {
  color: #a8513e;
  font-size: 12px;
  line-height: 1.6;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: calc(50% + 100px);
  transform: translateX(-50%);
  background: #263e2f;
  color: #f2f8e9;
  padding: 14px 22px;
  border-radius: 6px;
  box-shadow: 0 5px 30px #20342622;
  z-index: 10;
  font-size: 12px;
  max-width: 650px;
}
#toast.error {
  background: #7e4434;
}
.pin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.pin-grid div {
  padding: 8px;
  background: #f4f7ef;
  font: 11px var(--mono);
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
}
.check-row input {
  width: auto;
  margin-top: 3px;
}
.check-row label {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
.log-output {
  max-height: 250px;
  overflow: auto;
  white-space: pre-wrap;
}
.sample-label {
  color: #8b7948;
}
@media (min-width: 1450px) {
  main {
    padding-top: 44px;
  }
  .programmer-visual {
    height: 175px;
  }
  .orientation {
    margin-bottom: 22px;
  }
  .empty-state {
    padding: 50px 15px;
  }
}
@media (max-width: 1150px) {
  .sidebar {
    width: 205px;
    padding: 30px 15px;
  }
  .app {
    margin-left: 205px;
  }
  main {
    padding: 28px 25px 0;
  }
  .topbar {
    padding: 0 25px;
  }
  .notice span:not(.notice-icon) {
    display: none;
  }
  .work-grid {
    gap: 15px;
  }
  .programmer-card,
  .chip-card {
    padding-left: 17px;
    padding-right: 17px;
  }
  .card-heading {
    gap: 8px;
  }
  .orientation svg {
    width: 125px;
  }
  .operation-card {
    align-items: flex-start;
  }
  .operation-buttons {
    margin-left: auto;
  }
  .browser-indicator {
    display: none;
  }
  .catalog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .sidebar {
    width: 70px;
    padding: 24px 10px;
  }
  .brand {
    padding: 0;
    justify-content: center;
    font-size: 0;
    gap: 0;
  }
  .brand-dot,
  .workspace-label,
  .nav small,
  .sidebar-bottom p,
  .release,
  .account {
    display: none;
  }
  .nav {
    font-size: 0;
    justify-content: center;
    padding: 13px;
  }
  .nav span {
    font-size: 20px;
  }
  .sidebar nav {
    margin-top: 30px;
  }
  .app {
    margin-left: 70px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .programmer-visual {
    height: 145px;
  }
  .orientation svg {
    width: 150px;
  }
  .topbar {
    height: 65px;
  }
  .page-heading {
    gap: 15px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  h1 {
    font-size: 29px;
  }
  .image-heading {
    flex-wrap: wrap;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  #toast {
    left: calc(50% + 35px);
    width: 70%;
  }
}
@media (max-width: 520px) {
  main {
    padding: 23px 14px 0;
  }
  .topbar {
    padding: 0 14px;
    font-size: 10px;
  }
  .top-connect {
    font-size: 10px;
  }
  .page-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-heading > .button {
    align-self: flex-end;
    margin-top: -2px;
  }
  .notice {
    line-height: 1.7;
    padding: 12px;
  }
  .notice button {
    font-size: 10px;
  }
  .notice strong {
    display: block;
  }
  .card-heading h2 {
    font-size: 12px;
  }
  .card-heading .text-button {
    font-size: 10px;
  }
  .operation-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
  }
  .operation-buttons .button {
    flex: 1;
  }
  .image-heading {
    padding: 17px;
  }
  .image-heading h2 {
    max-width: 175px;
  }
  .tabs {
    gap: 18px;
    padding: 0 15px;
  }
  .tab {
    font-size: 10px;
  }
  .panel {
    padding: 15px;
  }
  .buffer-footer {
    gap: 12px;
    font-size: 8px;
    line-height: 1.7;
  }
  .empty-state {
    text-align: center;
    padding: 30px 12px;
  }
  .empty-state p {
    line-height: 1.8;
  }
  .empty-state h3 {
    font-size: 12px;
  }
  footer > span:nth-child(2) {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-list {
    grid-template-columns: 1fr;
  }
  .catalog-toolbar {
    flex-wrap: wrap;
  }
  .top-right .button {
    font-size: 0;
    padding: 8px;
  }
  .top-right .button:after {
    content: "⌁ Connect";
    font-size: 10px;
  }
  .orientation svg {
    min-width: 105px;
  }
  .catalog-toolbar select {
    width: 100%;
  }
  dialog {
    padding: 27px 20px;
  }
}
