/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #f8f9f6;
  --paper: #fff;
  --ink: #26332c;
  --muted: #899089;
  --line: #e6e9e1;
  --green: #314d36;
  --lime: #e4eddb;
  --sidebar: #f0f2ec;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans), system-ui, sans-serif;
  margin: 0;
  font-size: 14px;
}

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

button {
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  transition: background .15s, transform .15s;
  display: inline-flex;
}

button:hover {
  background: #f1f5ec;
}

button:disabled {
  opacity: .5;
  cursor: default;
}

button:focus-visible, a:focus-visible {
  outline-offset: 3px;
  outline: 2px solid #87a878;
}

button.primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

button.primary:hover {
  background: #416147;
}

input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce2d7;
  border-radius: 6px;
  outline: none;
  padding: 10px 12px;
}

input:focus, textarea:focus, select:focus {
  border-color: #8aab7d;
  box-shadow: 0 0 0 3px #e8eedf;
}

textarea {
  resize: vertical;
}

h1, h2, h3, p {
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading), system-ui, sans-serif;
}

h1 {
  letter-spacing: -1.2px;
  font-size: 34px;
  font-weight: 650;
}

h2 {
  font-size: 16px;
  font-weight: 700;
}

h3 {
  font-size: 14px;
  font-weight: 650;
}

p {
  line-height: 1.65;
}

small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  flex-direction: column;
  width: 246px;
  padding: 30px 18px 20px;
  display: flex;
  position: fixed;
  inset: 0 auto 0 0;
}

.brand {
  font-family: var(--font-heading), sans-serif;
  letter-spacing: -.7px;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
}

.brand-icon {
  background: var(--green);
  color: #e7efd9;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.beta {
  color: #7c8c6a;
  margin-left: auto;
  font-size: 13px;
}

.workspace {
  border-top: 1px solid #e0e5d9;
  border-bottom: 1px solid #e0e5d9;
  align-items: center;
  gap: 10px;
  margin: 31px 0 25px;
  padding: 14px 7px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.workspace small {
  font-size: 10px;
  display: block;
}

.workspace > svg {
  color: #9da894;
  margin-left: auto;
}

.avatar {
  color: #596849;
  background: #e0e6d5;
  border: 1px solid #d3dcc8;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.avatar.small {
  width: 29px;
  height: 29px;
}

.nav-label {
  letter-spacing: 1.45px;
  color: #8b9285;
  justify-content: space-between;
  align-items: center;
  margin: 0 11px 12px;
  font-size: 9px;
  font-weight: 650;
  display: flex;
}

.nav-label button {
  background: none;
  border: 0;
  padding: 0;
}

nav {
  gap: 5px;
  display: grid;
}

nav button {
  color: #737d70;
  background: none;
  border: 0;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 13px;
  font-size: 12px;
}

nav button.nav-active {
  color: #3d5636;
  background: #e0e7d7;
  font-weight: 650;
}

nav button b {
  background: #cfdbbd;
  border-radius: 4px;
  margin-left: auto;
  padding: 1px 6px;
  font-size: 10px;
}

.sidebar-projects {
  margin-top: 35px;
}

.sidebar-projects > button {
  color: #707c69;
  background: none;
  border: 0;
  justify-content: flex-start;
  width: 100%;
  padding: 9px 13px;
  font-size: 12px;
}

.sidebar-projects button i {
  border-radius: 3px;
  width: 8px;
  height: 8px;
  margin-right: 5px;
}

.sidebar-projects button svg {
  margin-left: auto;
}

.sidebar-hint {
  padding: 0 11px;
  font-size: 11px;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 30px;
}

.guardrail {
  color: #6d7b61;
  gap: 8px;
  margin-bottom: 14px;
  padding: 13px 8px;
  font-size: 10px;
  display: flex;
}

.guardrail small {
  color: #8a9583;
  font-size: 9px;
  display: block;
}

.sidebar-bottom > button {
  color: #7e8679;
  background: none;
  border: 0;
  justify-content: flex-start;
  width: 100%;
  padding: 9px;
  font-size: 11px;
}

.version {
  border-top: 1px solid var(--line);
  color: #8d9786;
  justify-content: space-between;
  margin-top: 18px;
  padding: 17px 9px 0;
  font-size: 10px;
  display: flex;
}

.main {
  width: calc(100% - 246px);
  margin-left: 246px;
}

.topbar {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 40px;
  font-size: 11px;
  display: flex;
}

.topbar > span, .topbar > div {
  color: #90978e;
  align-items: center;
  gap: 14px;
  display: flex;
}

.topbar b {
  color: #5a6457;
  font-weight: 500;
}

.connection {
  color: #7a8673;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  display: flex;
}

.connection i {
  background: #7e9d61;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.connection.offline i {
  background: #c57557;
}

.content {
  max-width: 1600px;
  margin: auto;
  padding: 37px 40px 20px;
}

.eyebrow {
  letter-spacing: 1.8px;
  color: #8c967e;
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 650;
}

.page-heading {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 31px;
  display: flex;
}

.page-heading p:not(.eyebrow) {
  color: #8a9286;
  margin-top: 9px;
  font-size: 12px;
}

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

.heading-actions button {
  padding: 10px 13px;
  font-size: 11px;
}

.fleet-banner {
  background: #edf2e6;
  border: 1px solid #dce6cf;
  border-radius: 9px;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  padding: 18px 20px;
  display: flex;
}

.pulse {
  color: #7b965d;
  background: #e1eacb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  display: flex;
}

.fleet-banner strong {
  font-size: 12px;
  font-weight: 650;
}

.fleet-banner p {
  color: #819174;
  margin-top: 3px;
  font-size: 11px;
}

.fleet-banner button {
  color: #617152;
  background: #f7faf2;
  border: 1px solid #d5dfca;
  margin-left: auto;
  padding: 8px 11px;
  font-size: 10px;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 27px;
  display: grid;
}

.stat {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 19px 20px 18px;
}

.stat > div {
  color: #91a080;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.stat > div span {
  color: #a2a99c;
  font-size: 9px;
}

.stat > strong {
  font-family: var(--font-heading), sans-serif;
  letter-spacing: -1px;
  margin: 15px 0 4px;
  font-size: 34px;
  font-weight: 600;
  display: block;
}

.stat p {
  color: #858e7e;
  font-size: 11px;
}

.overview-grid {
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
  display: grid;
}

.panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
}

.section-title {
  border-bottom: 1px solid #edf0e7;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 19px 21px;
  display: flex;
}

.section-title h2 {
  align-items: center;
  gap: 9px;
  font-size: 13px;
  display: flex;
}

.section-title h2 > span {
  color: #939e87;
  background: #f2f5ed;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
}

.section-title button {
  color: #889780;
  background: none;
  border: 0;
  padding: 0;
  font-size: 10px;
}

.count {
  color: #718261;
  background: #e9eddf;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 10px;
}

.project-summary {
  border-bottom: 1px solid #f0f2eb;
  align-items: center;
  gap: 14px;
  padding: 21px;
  display: flex;
}

.project-summary:last-child {
  border: 0;
}

.project-icon {
  color: #75915a;
  background: #e9eedf;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  display: inline-flex;
}

.color1 {
  color: #9784af;
  background: #efebf6;
}

.color2 {
  color: #b29a69;
  background: #fbefdd;
}

.color3 {
  color: #6f9ba8;
  background: #e2f0f3;
}

.project-summary > div {
  flex: 1;
  min-width: 0;
}

.project-summary strong {
  font-size: 12px;
  font-weight: 600;
}

.project-summary p {
  color: #9da593;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 310px;
  margin: 4px 0 10px;
  font-size: 10px;
  overflow: hidden;
}

.progress {
  background: #f0f3eb;
  border-radius: 5px;
  height: 4px;
}

.progress i {
  background: #acbe8a;
  border-radius: 5px;
  height: 100%;
  display: block;
}

.completion {
  text-align: right;
  color: #7d8972;
  margin-left: 13px;
  font-size: 11px;
}

.completion small {
  margin-top: 6px;
  font-size: 9px;
  display: block;
}

.attention {
  flex-direction: column;
  display: flex;
}

.all-clear {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 39px 12px;
  display: flex;
}

.all-clear > span {
  color: #99ad77;
  background: #f0f5e9;
  border: 1px solid #e4ecd9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 17px;
  display: flex;
}

.all-clear h3 {
  font-size: 12px;
  font-weight: 550;
}

.all-clear p {
  color: #a1a995;
  margin-top: 7px;
  font-size: 11px;
}

.panel-footer {
  color: #8c9b7b;
  background: #fafbf7;
  border: 0;
  border-top: 1px solid #edf0e7;
  border-radius: 0;
  justify-content: space-between;
  padding: 13px 21px;
  font-size: 10px;
}

.empty {
  text-align: center;
  color: #a0ae91;
  flex-direction: column;
  align-items: center;
  padding: 42px 22px;
  display: flex;
}

.empty h3 {
  color: #66755c;
  margin-top: 14px;
  font-weight: 550;
}

.empty p {
  color: #9aa38f;
  margin: 8px 0 17px;
  font-size: 11px;
}

.empty button {
  color: #718561;
  border-color: #dfe8d6;
  font-size: 11px;
}

.empty.compact {
  padding: 46px 18px;
}

.bottom-note {
  color: #9ba78d;
  align-items: center;
  gap: 7px;
  margin: 23px 0;
  font-size: 9px;
  display: flex;
}

.bottom-note > span {
  color: #acb3a3;
  margin-left: auto;
}

.task-row {
  text-align: left;
  border: 0;
  border-bottom: 1px solid #edf0e7;
  border-radius: 0;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  padding: 17px 21px;
  display: flex;
}

.task-row:last-child {
  border: 0;
}

.task-main {
  flex: 1;
  min-width: 0;
}

.task-main strong {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  display: block;
  overflow: hidden;
}

.task-main small {
  color: #9aa58e;
  font-size: 9px;
}

.task-main small span {
  color: #adb5a4;
}

.priority {
  color: #91a477;
  width: 16px;
  font-weight: 600;
}

.priority.p1 {
  color: #ba7e62;
}

.priority.p2 {
  color: #ac9669;
}

.badge {
  white-space: nowrap;
  color: #8c9584;
  background: #f0f2ec;
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  font-size: 9px;
  display: inline-flex;
}

.badge i {
  background: currentColor;
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.badge.working, .badge.validating {
  color: #78925c;
  background: #eaf1e0;
}

.badge.needs_review {
  color: #a69060;
  background: #f6eddc;
}

.badge.needs_input, .badge.failed {
  color: #b5806c;
  background: #f9eae4;
}

.badge.done {
  color: #65936e;
  background: #e6f0e7;
}

.badge.ready {
  color: #8990a6;
  background: #ebedf4;
}

.task-machine {
  color: #a0aa95;
  text-align: right;
  width: 114px;
  font-size: 10px;
}

.task-row > svg {
  color: #acb5a4;
}

.inbox-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 16px 21px;
}

.inbox-item strong {
  font-size: 12px;
  font-weight: 500;
}

.inbox-item small {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.queue-toolbar {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 15px;
  padding: 18px;
  display: flex;
}

.queue-toolbar input {
  max-width: 350px;
}

.queue-toolbar select {
  max-width: 160px;
}

.queue-toolbar span {
  color: var(--muted);
  margin-left: auto;
  font-size: 11px;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  display: grid;
}

.project-card, .machine-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  display: flex;
}

.project-card h2, .machine-card h2 {
  margin: 19px 0 7px;
  font-size: 20px;
}

.project-card > p, .machine-card > p {
  color: #929c88;
  font-size: 12px;
}

.tags {
  flex-wrap: wrap;
  gap: 6px;
  margin: 17px 0;
  display: flex;
}

.tags span {
  color: #80916f;
  background: #f1f5eb;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 10px;
}

dl {
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  width: 100%;
  margin: 18px 0 23px;
  font-size: 11px;
  display: grid;
}

dt {
  color: #9ba690;
}

dd {
  text-align: right;
  color: #6c7a60;
  overflow-wrap: anywhere;
  margin: 0;
}

.project-card button, .machine-card button {
  margin-top: auto;
  font-size: 11px;
}

.add-card {
  color: #9aaa8b;
  background: none;
  border: 1px dashed #cfdac5;
  flex-direction: column;
  min-height: 285px;
}

.add-card h3 {
  color: #758569;
  margin: 12px 0 1px;
}

.add-card p {
  font-size: 11px;
}

.machine-top {
  color: #879f72;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.settings-grid {
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  display: grid;
}

.settings-panel {
  padding: 26px;
}

.settings-panel p {
  color: #93a086;
  font-size: 12px;
}

.settings-panel .green {
  color: #628a51;
}

.settings-panel button {
  margin-top: 15px;
  font-size: 11px;
}

.error-banner {
  color: #9a6148;
  background: #fff5ed;
  border: 1px solid #e8c6b6;
  border-radius: 8px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 12px;
  display: flex;
}

.error-banner button {
  background: none;
  border: 0;
  padding: 0;
}

.error {
  color: #b67256;
  margin: 12px 0;
  font-size: 12px;
}

.modal-overlay, .drawer-overlay {
  z-index: 30;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #24301f44;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--bg);
  border-radius: 15px;
  width: 520px;
  max-height: 92vh;
  padding: 27px;
  overflow: auto;
  box-shadow: 0 25px 90px #21301b22;
}

.drawer-top {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 23px;
  display: flex;
}

.drawer-top h2 {
  letter-spacing: -.5px;
  font-size: 20px;
}

.drawer-top button {
  background: none;
  border: 0;
  padding: 2px;
}

.modal form {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

label {
  color: #7a886e;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 550;
  display: flex;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  display: grid;
}

.modal p {
  color: #89967c;
  font-size: 12px;
}

.submit {
  width: 100%;
  margin-top: 10px;
}

.night-note {
  color: #92a479;
  background: #edf2e5;
  border: 1px solid #e0e8d6;
  border-radius: 8px;
  align-items: center;
  gap: 16px;
  padding: 19px;
  display: flex;
}

.drawer-overlay {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  justify-content: flex-end;
  padding: 0;
}

.drawer {
  background: var(--bg);
  width: 570px;
  max-width: 100%;
  height: 100vh;
  padding: 29px;
  overflow: auto;
  box-shadow: -10px 0 50px #0001;
}

.drawer h2 {
  margin: 16px 0;
  font-size: 26px;
  line-height: 1.35;
}

.drawer h3 {
  margin: 25px 0 12px;
}

.task-description {
  color: #859279;
  white-space: pre-wrap;
  font-size: 12px;
}

.branch {
  border: 1px solid var(--line);
  overflow-wrap: anywhere;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-size: 10px;
  display: flex;
}

.branch code {
  overflow-wrap: anywhere;
  min-width: 0;
}

pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #718064;
  background: #edf1e7;
  border: 1px solid #e2e8d9;
  border-radius: 7px;
  max-height: 350px;
  padding: 15px;
  font-size: 11px;
  line-height: 1.7;
  overflow: auto;
}

.drawer-actions {
  gap: 9px;
  margin-top: 22px;
  display: flex;
}

.drawer-actions form {
  gap: 10px;
  width: 100%;
  display: grid;
}

.drawer-actions button {
  font-size: 11px;
}

.timeline > div {
  border-left: 1px solid #dce4d2;
  margin-left: 4px;
  padding: 0 0 19px 19px;
  position: relative;
}

.timeline i {
  background: #b0c295;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: -4px;
}

.timeline p {
  color: #859677;
  white-space: pre-wrap;
  max-height: 150px;
  font-size: 11px;
  overflow: auto;
}

.timeline small {
  font-size: 9px;
}

details {
  color: #819471;
  margin-bottom: 10px;
  font-size: 12px;
}

summary {
  cursor: pointer;
}

.token {
  -webkit-user-select: all;
  user-select: all;
}

.login {
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  display: grid;
}

.login-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 15vh max(35px, 15%);
  display: flex;
}

.login-card > .brand-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 50px;
}

.login-card h1 {
  font-size: 43px;
  line-height: 1.25;
}

.login-card h1 span {
  color: #a2b982;
}

.login-card > p:not(.eyebrow) {
  color: #91a080;
  margin: 24px 0;
  font-size: 13px;
}

.login-card form {
  width: 100%;
  margin: 7px 0 22px;
}

.login-card label {
  margin-bottom: 17px;
}

.login-card button {
  justify-content: space-between;
  width: 100%;
  padding: 13px;
  font-size: 12px;
}

.login-art {
  color: #718962;
  background: #e4eadb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-art > svg {
  z-index: 1;
}

.login-art > span {
  z-index: 1;
  font-family: var(--font-heading), sans-serif;
  letter-spacing: 2px;
  font-size: 11px;
}

.orbit {
  border: 1px solid #cbd9bd;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  position: absolute;
}

.orbit.o2 {
  width: 650px;
  height: 650px;
}

.loading {
  color: #8a9b78;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 100vh;
  display: flex;
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1500px) {
  .content {
    padding: 44px 55px;
  }

  .page-heading {
    margin-bottom: 35px;
  }

  .stats {
    gap: 22px;
  }

  .stat {
    padding: 23px;
  }

  .overview-grid {
    gap: 25px;
  }
}

@media (max-width: 1150px) {
  .sidebar {
    width: 215px;
  }

  .main {
    width: calc(100% - 215px);
    margin-left: 215px;
  }

  .content {
    padding: 30px 24px;
  }

  .topbar {
    padding: 0 24px;
  }

  .heading-actions button {
    font-size: 10px;
  }

  .page-heading {
    align-items: flex-start;
  }

  .page-heading h1 {
    font-size: 29px;
  }

  .stats {
    gap: 10px;
  }

  .stat {
    padding: 16px;
  }

  .stat > div span {
    display: none;
  }

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

  .task-machine {
    display: none;
  }
}

@media (max-width: 820px) {
  .sidebar {
    width: 69px;
    padding: 25px 10px;
  }

  .brand {
    font-size: 0;
  }

  .beta, .workspace, .nav-label, .sidebar-projects, .sidebar-bottom {
    display: none;
  }

  nav {
    margin-top: 40px;
  }

  nav button {
    justify-content: center;
    padding: 13px;
    font-size: 0;
  }

  nav button svg {
    flex-shrink: 0;
  }

  nav button b {
    display: none;
  }

  .main {
    width: calc(100% - 69px);
    margin-left: 69px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .page-heading {
    flex-direction: column;
    gap: 22px;
  }

  .content {
    padding: 28px 20px;
  }

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

  .topbar {
    height: 60px;
    padding: 0 20px;
  }

  .connection {
    font-size: 0;
  }

  .cards, .settings-grid {
    grid-template-columns: 1fr;
  }

  .bottom-note span {
    display: none;
  }

  .task-row {
    gap: 8px;
    padding: 16px 13px;
  }

  .login {
    grid-template-columns: 1fr;
  }

  .login-art {
    display: none;
  }

  .login-card {
    padding: 12vh 12%;
  }

  .queue-toolbar {
    flex-wrap: wrap;
  }

  .queue-toolbar input {
    max-width: none;
  }

  .queue-toolbar span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.sidebar {
  overflow-y: auto;
}

.project-card > button + button {
  margin-top: 8px;
}

/* [project]/app/sans_8e76502c.module.css [app-client] (css) */
@font-face {
  font-family: sans;
  src: url("../media/dm_sans_latin_wght_normal-s.p.0tm8u-h63rec8.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: sans Fallback;
  src: local(Arial);
  ascent-override: 94.36%;
  descent-override: 29.49%;
  line-gap-override: 0.0%;
  size-adjust: 105.13%;
}

.sans_8e76502c-module__o2le0W__className {
  font-family: sans, sans Fallback;
}

.sans_8e76502c-module__o2le0W__variable {
  --font-sans: "sans", "sans Fallback";
}

/* [project]/app/heading_8bab43c1.module.css [app-client] (css) */
@font-face {
  font-family: heading;
  src: url("../media/manrope_latin_wght_normal-s.p.1p_a2k8qd5zhp.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: heading Fallback;
  src: local(Arial);
  ascent-override: 106.45%;
  descent-override: 29.96%;
  line-gap-override: 0.0%;
  size-adjust: 100.14%;
}

.heading_8bab43c1-module__23l0dG__className {
  font-family: heading, heading Fallback;
}

.heading_8bab43c1-module__23l0dG__variable {
  --font-heading: "heading", "heading Fallback";
}

/*# sourceMappingURL=app_0fcfdzp._.css.map*/