/* src/styles.css */
:root {
  color-scheme: dark;
  --bg: #0f172a;
  --card: #111827;
  --border: #243044;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  line-height: 1.5;
  background: var(--bg);
  color: var(--text);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}
h1,
h2 {
  margin: 0;
}
button {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  background: var(--accent);
  color: white;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
button:hover:not(:disabled) {
  background: var(--accent-hover);
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
button.secondary {
  background: #1f2937;
  border: 1px solid var(--border);
}
button.secondary:hover:not(:disabled) {
  background: #243044;
}
.muted {
  color: var(--muted);
}
.error {
  color: #fca5a5;
  background: #3f1d1d;
  border: 1px solid #7f1d1d;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
}
.success {
  color: #86efac;
  background: #14532d55;
  border: 1px solid #166534;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
}
.page-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.panel-head a,
.panel a {
  color: #93c5fd;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th,
td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

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