@charset "UTF-8";

/* src/styles.scss */
:root {
  --brand-bg: #f5f5f4;
  --brand-menu: #1c1917;
  --brand-menu-text: #d6d3d1;
  --brand-menu-header: transparent;
  --brand-button: #1c1917;
  --brand-button-text: #fff;
}
* {
  box-sizing: border-box;
}
body {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  margin: 0;
  background: var(--brand-bg);
  color: #1c1917;
}
h1 {
  font-size: 22px;
}
.wrap {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 16px;
}
.card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
input,
select {
  padding: 8px;
  border: 1px solid #d6d3d1;
  border-radius: 6px;
  font-size: 14px;
}
button {
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: var(--brand-button);
  color: var(--brand-button-text);
  cursor: pointer;
  font-size: 14px;
}
button:disabled {
  opacity: 0.6;
  cursor: default;
}
.muted {
  color: #78716c;
  font-size: 13px;
}
.error {
  color: #b91c1c;
  font-size: 13px;
  min-height: 1em;
}
.ok {
  display: inline-block;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 500;
}
.badge {
  background: #e0e7ff;
  color: #3730a3;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  text-transform: uppercase;
}
.badge--ship {
  background: #ccfbf1;
  color: #0f766e;
}
@keyframes flash-highlight {
  from {
    background: #fde68a;
  }
  to {
    background: transparent;
  }
}
.flash-highlight,
.flash-highlight > td {
  animation: flash-highlight 4s ease-out;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 13px;
}
th,
td {
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid #f0eeec;
  vertical-align: middle;
}
td input[type=text],
td input[type=password] {
  width: 100%;
}
form.create {
  flex-direction: row;
  flex-wrap: wrap;
  max-width: none;
  align-items: center;
}
form.create input {
  flex: 1 1 140px;
}
.shell {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 200px;
  background: var(--brand-menu);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 4px;
}
.sidebar .brand {
  font-weight: 700;
  font-size: 18px;
  padding: 8px 12px 14px;
}
.nav-item {
  background: transparent;
  color: var(--brand-menu-text);
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  border: 0;
}
.nav-item:hover {
  background: #292524;
  color: #fff;
}
.nav-item.active {
  background: var(--brand-button);
  color: var(--brand-button-text);
}
.sidebar .spacer {
  flex: 1;
}
.nav-user {
  padding: 10px 12px;
  font-size: 12px;
  color: #a8a29e;
  border-top: 1px solid #44403c;
  margin-top: 8px;
}
.nav-user div {
  margin-bottom: 4px;
}
.content {
  flex: 1;
  padding: 24px 20px;
}
.block {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  max-width: 900px;
}
.notice {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  margin: 0 0 12px;
}
.idle-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 25, 23, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.idle-modal {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.idle-modal h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.idle-modal p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #44403c;
}
.idle-actions {
  display: flex;
  gap: 8px;
}
.idle-actions button.ghost {
  background: #fff;
  color: #1c1917;
  border: 1px solid #d6d3d1;
}
@media print {
  .sidebar,
  app-idle-warning {
    display: none !important;
  }
  .shell,
  .content {
    display: block !important;
  }
  .content {
    padding: 0 !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
