/* src/styles.css */
:root {
  color-scheme: light;
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --ink: #172033;
  --muted: #647084;
  --line: #d9e0ea;
  --brand: #246bfe;
  --brand-dark: #174fc0;
  --ok: #12815d;
  --warn: #aa6500;
  --bad: #b42318;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}
button,
input,
select {
  font: inherit;
}
button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.btn {
  background: var(--brand);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
}
.btn:hover {
  background: var(--brand-dark);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.field input,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th,
td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th {
  color: var(--muted);
  background: #f8fafc;
  font-size: 12px;
  text-transform: uppercase;
}

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