@font-face {
  font-family: Systempilot;
  src: url("/assets/regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Systempilot;
  src: url("/assets/bold.ttf");
  font-weight: 700;
  font-display: swap;
}
:root {
  font-family: Systempilot, Arial, sans-serif;
  background: #101214;
  color: #fff;
  color-scheme: dark;
  --card: #17191c;
  --line: #30363d;
  --text: #acc5d8;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 28px;
}
main {
  max-width: 1100px;
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #29abe7;
  font-weight: 700;
}
.card {
  max-width: 460px;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 8vh auto;
}
.card h1 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.card p {
  line-height: 1.6;
  color: var(--text);
}
button,
.button {
  font:
    700 14px Systempilot,
    Arial,
    sans-serif;
  min-height: 42px;
  padding: 10px 16px;
  background: #171b20;
  border: 1px solid #3e4954;
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
button:hover,
.button:hover {
  background: #29343f;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
.button:focus-within {
  outline: 3px solid #60baf2;
  outline-offset: 3px;
}
.card button {
  width: 100%;
  margin-top: 14px;
  background: #185b8d;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
h1 {
  font-size: 28px;
  margin: 0;
}
p {
  color: var(--text);
}
.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.primary {
  background: #185b8d;
}
.filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.filter label,
.filter span {
  font-size: 13px;
  color: var(--text);
}
input {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 10px;
  color: inherit;
  border-radius: 6px;
  max-width: 100%;
  font: inherit;
}
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--text);
  background: var(--card);
  font-weight: 400;
}
td:first-child {
  overflow-wrap: anywhere;
  min-width: 130px;
}
td:last-child {
  white-space: nowrap;
}
td button {
  font-size: 12px;
  margin-right: 6px;
}
tr:last-child td {
  border-bottom: 0;
}
.folder {
  color: #8ad3ff;
  background: transparent;
  border: 0;
  padding-left: 0;
  text-align: left;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  margin-top: 24px;
}
.legal {
  justify-content: center;
}
a {
  color: #8ad3ff;
}
#message,
#file-message {
  overflow-wrap: anywhere;
}
#breadcrumb {
  overflow-wrap: anywhere;
}
[hidden] {
  display: none !important;
}
@media (max-width: 600px) {
  body {
    padding: 18px;
  }
  .card {
    padding: 24px;
    margin: 4vh auto;
  }
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  header {
    gap: 12px;
  }
  .eyebrow {
    font-size: 10px;
  }
  th,
  td {
    padding: 10px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal {
    flex-direction: row;
  }
  .filter span {
    width: 100%;
  }
}
@media (forced-colors: active) {
  button,
  .button {
    border: 1px solid ButtonText;
  }
}

@media (max-width: 600px) {
  td:last-child {
    white-space: normal;
    min-width: 98px;
  }
  td button {
    display: block;
    width: 100%;
    margin: 4px 0;
  }
  td:first-child {
    min-width: 90px;
  }
}

#workspace-nav {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
.workspace-list {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}
.workspace-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 8px;
  padding: 24px;
  max-width: 680px;
}
.workspace-card h2 {
  font-size: 20px;
  margin-top: 0;
}
.workspace-card label {
  display: block;
  margin: 12px 0 6px;
}
.workspace-card input,
.workspace-card select {
  width: 100%;
  margin-bottom: 12px;
}
.workspace-card button {
  margin: 6px 8px 6px 0;
}
select {
  font: inherit;
  padding: 12px;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
}
select:focus-visible {
  outline: 3px solid #60baf2;
  outline-offset: 3px;
}
#close-workspace {
  margin-right: 12px;
}
#workspace-manage p,
#workspace-pane p {
  line-height: 1.6;
}
