@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
:root {
  --color-gray-100: lch(0% 0 0deg);
  --color-gray-90: lch(4% 0.5 240deg);
  --color-gray-80: lch(8% 1 240deg);
  --color-gray-70: lch(12% 1.5 240deg);
  --color-gray-60: lch(16% 2 240deg);
  --color-background: lch(0% 0 0deg);
  --color-surface-1: lch(4% 0.5 240deg);
  --color-surface-1--hover: lch(8% 1 240deg);
  --color-surface-2: lch(8% 1 240deg);
  --color-surface-2--hover: lch(12% 1.5 240deg);
  --color-overlay-1: lch(12% 1.5 240deg);
  --color-overlay-1--hover: lch(16% 2 240deg);
  --color-overlay-2: lch(16% 2 240deg);
  --color-overlay-2--hover: lch(20% 2.5 240deg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

body {
  background: lch(4% 0.5 240deg);
  color: #ffffff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  line-height: 1.618;
}

body#app {
  display: flex;
  overflow: hidden;
  height: 100vh;
}

.main-container {
  height: 100%;
  overflow-y: auto;
  flex: 1;
}

main {
  padding: 1.5rem;
  padding-top: 5rem;
  max-width: 1024px;
  margin-right: auto;
}

main.full-width {
  max-width: unset;
  margin-inline: unset;
}

@media (max-width: 960px) {
  main {
    padding-top: 1.5rem;
    width: 100%;
  }
}
ul {
  margin-left: 1em;
}

h1 {
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h1:first-child {
  margin-top: 0;
}
h1:last-child {
  margin-bottom: 0;
}

h2 {
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h2:first-child {
  margin-top: 0;
}
h2:last-child {
  margin-bottom: 0;
}

h3 {
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h3:first-child {
  margin-top: 0;
}
h3:last-child {
  margin-bottom: 0;
}

h4 {
  font-size: 1.728rem;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h4:first-child {
  margin-top: 0;
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 1.44rem;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h5:first-child {
  margin-top: 0;
}
h5:last-child {
  margin-bottom: 0;
}

h6 {
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
h6:first-child {
  margin-top: 0;
}
h6:last-child {
  margin-bottom: 0;
}

div + h1 {
  margin-top: 0;
}

h1:first-child {
  margin-top: 0;
}

small {
  font-size: 0.8333333333rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.5);
}

.text-data {
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-weight: 500;
}

a,
p {
  font-size: 1rem;
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: 9999px;
}

.btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.9em 1em;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  background-color: lch(12% 1.5 240deg);
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: all 100ms ease-in;
  letter-spacing: 0.02em;
}
.btn svg {
  color: rgba(255, 255, 255, 0.8);
}
.btn:hover, .btn:active, .btn:focus, .btn:disabled {
  transition: all 100ms ease-out;
}
.btn:hover {
  background-color: lch(16% 2 240deg);
  text-decoration: none;
  color: #ffffff;
}
.btn:focus {
  outline-color: #1b70d1;
}
.btn:disabled {
  color: rgba(255, 255, 255, 0.5);
  background: lch(12% 1.5 240deg);
}
.btn:disabled:hover {
  color: rgba(255, 255, 255, 0.5);
  background: lch(12% 1.5 240deg);
  cursor: not-allowed;
}

.btn--primary {
  background-color: #1b70d1;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #0f5fb1;
}

.btn--destructive {
  background-color: #c44640;
}
.btn--destructive:hover {
  background-color: #a83934;
}
.btn--destructive:focus {
  outline-color: #c44640;
}

.btn--tertiary,
.btn--sidebar {
  background: none;
  color: rgba(255, 255, 255, 0.5);
  justify-content: start;
}
.btn--tertiary:hover,
.btn--sidebar:hover {
  color: rgba(255, 255, 255, 0.8);
}
.btn--tertiary:disabled,
.btn--sidebar:disabled {
  background: none;
}
.btn--tertiary:disabled:hover,
.btn--sidebar:disabled:hover {
  background: none;
}
.btn--tertiary.active,
.btn--sidebar.active {
  color: #ffffff;
  background-color: lch(12% 1.5 240deg);
}
.btn--tertiary.active:hover,
.btn--sidebar.active:hover {
  background-color: lch(20% 2.5 240deg);
}
.btn--tertiary.active svg,
.btn--sidebar.active svg {
  color: rgba(255, 255, 255, 0.8);
}
.btn--tertiary svg,
.btn--sidebar svg {
  color: rgba(255, 255, 255, 0.5);
}

.btn--sidebar {
  display: flex;
  padding: 0.75rem;
  font-weight: 500;
}
.btn--sidebar:focus {
  outline-color: transparent;
}

.btn--icon {
  border-radius: 9999px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.btn--icon:hover {
  background-color: lch(20% 2.5 240deg);
}

.btn--inverted {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.87);
}
.btn--inverted:focus {
  outline: none;
}
.btn--inverted:hover {
  background: rgba(0, 0, 0, 0.3);
  color: rgb(0, 0, 0);
}

.h-btn-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.v-btn-group {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.25rem;
}

code {
  all: unset;
  background-color: lch(12% 1.5 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  border-radius: 12px;
  color: #ffffff;
  padding: 1em;
  line-height: 1;
  font-size: 0.8333333333rem;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-size: 0.8333333333rem;
  display: inline-block;
  padding: 0.5em;
  border-radius: 6px;
  line-height: 1;
  min-width: 1ch;
}

code.is-empty:before {
  color: rgba(255, 255, 255, 0.5);
  content: "EMPTY";
}

code.is-null:before {
  color: rgba(255, 255, 255, 0.5);
  content: "NULL";
}

.card {
  background: lch(8% 1 240deg);
  border-radius: 12px;
}
.card.padded {
  padding: 1em;
}

.card--outlined {
  background: none;
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  border-radius: 12px;
}

input[type=text],
input[type=password],
input[type=number] {
  all: unset;
  background-color: lch(12% 1.5 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  border-radius: 12px;
  color: #ffffff;
  padding: 1em;
  line-height: 1;
  font-size: 0.8333333333rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  font-size: 0.8333333333rem;
  display: inline-block;
  max-width: 440px;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=number]:hover {
  background-color: lch(16% 2 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  color: #ffffff;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=number]:focus {
  outline: 2px solid #1c71d8;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=number]:disabled {
  color: rgba(255, 255, 255, 0.5);
}

textarea {
  all: unset;
  background-color: lch(12% 1.5 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  border-radius: 12px;
  color: #ffffff;
  padding: 1em;
  line-height: 1;
  font-size: 0.8333333333rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  font-size: 0.8333333333rem;
}
textarea:hover {
  background-color: lch(16% 2 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  color: #ffffff;
}
textarea:focus {
  outline: 2px solid #1c71d8;
}
textarea:disabled {
  color: rgba(255, 255, 255, 0.5);
}

.label {
  font-size: 0.8333333333rem;
  padding: 0.4em;
  line-height: 1;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  max-width: min-content;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background-color: #1b70d1;
  color: #ffffff;
}

.label--success {
  background-color: #328125;
}

.label--warning {
  background-color: #9d6500;
}

.label--danger {
  background-color: #c44640;
}

.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

.link--danger {
  font-size: 0.8333333333rem;
  color: rgba(255, 69, 58, 0.87);
}
.link--danger:hover {
  text-decoration: none;
  color: rgb(255, 69, 58);
  cursor: pointer;
}

.list {
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  border-radius: 12px;
  background: lch(8% 1 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
}
.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
}
.list-item:last-child {
  border-bottom: none;
}
.list-item__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #1b70d1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.list-item__content {
  flex-grow: 1;
}
.list-item__headline {
  font-weight: 600;
  line-height: 1.4;
  font-size: 1rem;
}
.list-item__description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8333333333rem;
}

.nfc-card {
  border-radius: 12px;
  padding: 0.75rem;
  margin-inline: auto;
  background: lch(8% 1 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15), 0 2px 5px -1px rgba(0, 0, 0, 0.15);
  flex: 1;
  height: auto;
  aspect-ratio: 1.636;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  cursor: pointer;
  transition: all 300ms ease-out;
}

.nfc-card__id {
  font-size: 0.8333333333rem;
  text-align: right;
}

.nfc-card > * {
  margin: 0;
}

.nfc-card:hover {
  border-color: rgba(0, 0, 6, 0.36);
  background: lch(16% 2 240deg);
  transition: all 200ms ease-out;
}

.is-present {
  border-color: rgba(0, 0, 6, 0.36);
  background: lch(16% 2 240deg);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.25);
  transition: all 200ms ease-out;
}

.is-present:hover {
  border-color: rgba(0, 0, 6, 0.36);
  background: lch(16% 2 240deg);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.25);
  transition: all 200ms ease-out;
}

select {
  all: unset;
  background-color: lch(12% 1.5 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  border-radius: 12px;
  color: #ffffff;
  padding: 1em;
  line-height: 1;
  font-size: 0.8333333333rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  appearance: none;
  min-width: 15ch;
  max-width: 440px;
  line-height: normal;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
select:hover {
  background-color: lch(16% 2 240deg);
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  transition: all 200ms;
  color: #ffffff;
}
select:focus {
  outline: 2px solid #1c71d8;
}
select:disabled {
  color: rgba(255, 255, 255, 0.5);
}

table {
  border-collapse: collapse;
  background: lch(8% 1 240deg);
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
}
table th,
table td {
  padding: 0.75rem;
  vertical-align: middle;
}
table thead tr {
  border-bottom: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  background: lch(12% 1.5 240deg);
}
table thead tr th {
  text-align: left;
  border-bottom: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
}

th,
td {
  padding: 0.75rem;
}

th:first-child {
  border-top-left-radius: 12px;
}

th:last-child {
  border-top-right-radius: 12px;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.progress-bar {
  height: 2rem;
  width: 100%;
  display: inline-block;
  background-color: lch(4% 0.5 240deg);
  border-radius: 9999px;
  min-width: 300px;
  box-sizing: border-box;
  padding: 5px;
}
.progress-bar__progress {
  display: inline-block;
  background-color: #1b70d1;
  height: 100%;
  width: 30%;
  border-radius: 9999px;
}
.progress-bar__progress.is-success {
  background-color: #328125;
}
.progress-bar__progress.is-failure {
  background-color: #c44640;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.form-field label {
  font-size: 0.8333333333rem;
  color: rgba(255, 255, 255, 0.8);
}
.form-field select,
.form-field input {
  max-width: 150px;
}
.form-field.inline {
  flex-direction: row;
  align-items: center;
}
.form-field.inline label {
  min-width: 120px;
}
.form-field.inline select,
.form-field.inline input {
  max-width: unset;
  width: 100%;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.75rem;
}
.form--inline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.form-group .form-label {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}
.form-group .form-label.inline {
  display: none;
}
.form-group .form-help {
  font-size: 0.8333333333rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 60ch;
}

.v-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.h-stack {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

#login-container {
  padding: 0.75rem;
  max-width: 400px;
  margin-inline: auto;
}

#dashboard-container {
  padding: 0.75rem;
  max-width: 1280px;
  margin-inline: auto;
}

.horizontal-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.responsive-list {
  flex-direction: row;
}

@media (max-width: 960px) {
  .responsive-list {
    flex-direction: column;
    align-items: stretch;
  }
}
.mt-8 {
  margin-top: 2rem;
}

.mb {
  margin-bottom: 1rem;
}

.mt {
  margin-top: 2rem;
}

#toast {
  visibility: hidden;
  position: fixed;
  padding: 16px;
  z-index: 1;
  bottom: 30px;
  right: 0;
  border-radius: 12px;
  background-color: #c44640;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.toast__header {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.toast__details {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.is-visible {
  visibility: visible !important;
}

#sidebar {
  padding: 0.75rem;
  width: 220px;
  height: 100%;
  background-color: lch(0% 0 0deg);
  border-right: 1px solid oklab(67.8928% 0.00322348 -0.0111784 / 0.24);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#sidebar .brand {
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
#sidebar header {
  padding: 0.5rem;
  margin-bottom: 0.75rem;
}
#sidebar nav {
  padding: 0;
  flex: 1;
}
#sidebar nav ul {
  background: none;
  border: none;
  list-style-type: none;
  gap: 2px;
  margin: 0;
}
#sidebar nav ul li {
  border: none;
  padding: 0;
}

@media (max-width: 960px) {
  #sidebar {
    display: none;
  }
}
#page-header {
  margin-bottom: 1rem;
}

#page-header .description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  padding: 0;
}

.page-header-with-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 960px) {
  .page-header-with-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.page-layout-columns {
  display: flex;
  align-items: start;
  width: 100%;
  gap: 1rem;
}

.circle {
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 900;
}

#login {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 12px;
}

#login h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
