@charset "UTF-8";

/* src/styles.scss */
:root {
  --c-ink: #1b1f24;
  --c-ink-soft: #4a5259;
  --c-muted: #7b848d;
  --c-line: #e3e7ea;
  --c-line-strong: #cfd5da;
  --c-bg: #f5f7f8;
  --c-panel: #ffffff;
  --c-nav: #1e2733;
  --c-nav-soft: #2a3644;
  --c-nav-text: #b7c1cc;
  --c-accent: #b8543a;
  --c-accent-dark: #98422c;
  --c-accent-soft: #fbeee9;
  --c-blue: #2f6fb5;
  --c-green: #2f7d55;
  --c-amber: #b07d15;
  --c-red: #c0392b;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(27, 31, 36, 0.07);
  --shadow: 0 4px 14px rgba(27, 31, 36, 0.09);
  --sidebar-w: 232px;
  --font-sans:
    "Segoe UI",
    system-ui,
    -apple-system,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.25;
}
h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 1.1rem;
}
h3 {
  font-size: 0.95rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
.panel {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-line);
}
.panel-head h2 {
  margin: 0;
}
.panel-body {
  padding: 18px;
}
.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.page-head p {
  margin: 2px 0 0;
  color: var(--c-muted);
  font-size: 0.86rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover:not(:disabled) {
  background: var(--c-accent-dark);
}
.btn-dark {
  background: var(--c-nav);
  color: #fff;
}
.btn-dark:hover:not(:disabled) {
  background: #121a24;
}
.btn-outline {
  background: #fff;
  border-color: var(--c-line-strong);
  color: var(--c-ink-soft);
}
.btn-outline:hover:not(:disabled) {
  border-color: var(--c-ink-soft);
  color: var(--c-ink);
}
.btn-danger {
  background: #fff;
  border-color: #e6bdb7;
  color: var(--c-red);
}
.btn-danger:hover:not(:disabled) {
  background: #fdf2f0;
}
.btn-ghost {
  background: transparent;
  color: var(--c-muted);
}
.btn-ghost:hover:not(:disabled) {
  color: var(--c-ink);
}
.btn-sm {
  padding: 5px 10px;
  font-size: 0.79rem;
}
.btn-block {
  width: 100%;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field > span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin-bottom: 4px;
}
.field > span em {
  font-weight: 400;
  font-style: normal;
  color: var(--c-muted);
}
.input,
.select,
textarea.input {
  width: 100%;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--radius);
  padding: 8px 11px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus,
.select:focus,
textarea.input:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.select {
  appearance: none;
  padding-right: 30px;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--c-muted) 50%),
    linear-gradient(
      135deg,
      var(--c-muted) 50%,
      transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 14px;
}
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  cursor: pointer;
}
.check input {
  accent-color: var(--c-accent);
  width: 15px;
  height: 15px;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.toolbar .input,
.toolbar .select {
  width: auto;
  min-width: 170px;
}
.toolbar .spacer {
  flex: 1;
}
.table-wrap {
  overflow-x: auto;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
table.data th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  font-weight: 700;
  padding: 10px 12px;
  border-bottom: 1px solid var(--c-line-strong);
  white-space: nowrap;
}
table.data td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}
table.data tbody tr:hover {
  background: #fafbfc;
}
table.data .right {
  text-align: right;
}
table.data .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.thumb {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--c-line);
}
.tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #eef1f3;
  color: var(--c-ink-soft);
  white-space: nowrap;
}
.tag-green {
  background: #e5f2ea;
  color: var(--c-green);
}
.tag-blue {
  background: #e7eff8;
  color: var(--c-blue);
}
.tag-amber {
  background: #fbf1dc;
  color: var(--c-amber);
}
.tag-red {
  background: #fbeae7;
  color: var(--c-red);
}
.alert {
  border: 1px solid;
  border-radius: var(--radius);
  padding: 10px 13px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.alert-error {
  background: #fdf2f0;
  border-color: #eec8c1;
  color: #8e2f1f;
}
.alert-success {
  background: #eef7f1;
  border-color: #c3e0ce;
  color: #23593e;
}
.alert-info {
  background: #eef3f8;
  border-color: #cfdcea;
  color: #2b4a6b;
}
.muted {
  color: var(--c-muted);
}
.small {
  font-size: 0.8rem;
}
.center {
  text-align: center;
}
.empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--c-muted);
}
.skeleton {
  background:
    linear-gradient(
      90deg,
      #e9edef 25%,
      #f3f6f7 50%,
      #e9edef 75%);
  background-size: 400% 100%;
  animation: shimmer 1.3s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0 0;
  }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 31, 36, 0.45);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}
.modal {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
}
.modal-body {
  padding: 20px;
  overflow-y: auto;
}
.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--c-line);
}
.modal-close {
  border: 0;
  background: none;
  font-size: 1.2rem;
  color: var(--c-muted);
  line-height: 1;
}
.modal-close:hover {
  color: var(--c-ink);
}
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--c-line);
  font-size: 0.82rem;
  color: var(--c-muted);
}
.pager .buttons {
  display: flex;
  gap: 8px;
}
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

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