/* src/styles.scss */
:root {
  color-scheme: light;
  --surface: #f6f7f9;
  --panel: #ffffff;
  --line: #d8dee8;
  --text: #1c2533;
  --muted: #667085;
  --brand: #0f766e;
  --brand-strong: #115e59;
  --danger: #b42318;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  background: var(--surface);
  color: var(--text);
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  cursor: pointer;
  padding: 0.65rem 0.9rem;
}
button.secondary {
  background: #344054;
}
button.danger {
  background: var(--danger);
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  background: white;
  color: var(--text);
}
label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.page {
  display: grid;
  gap: 1rem;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.grid {
  display: grid;
  gap: 1rem;
}
.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
}
th {
  color: var(--muted);
  font-weight: 700;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  border-radius: 999px;
  background: #e7f5f2;
  color: var(--brand-strong);
  padding: 0.15rem 0.55rem;
  font-size: 0.82rem;
}

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