/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f7fa;
  color: #0f172a;
}
app-root {
  display: block;
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
:is():hover {
  background: #94a3b8;
}
*:focus-visible {
  outline: 2px solid #0369a1;
  outline-offset: 2px;
}
html {
  scroll-behavior: smooth;
}
button svg,
a svg {
  pointer-events: none;
  display: block;
  flex-shrink: 0;
}
.action-btn svg {
  width: 16px;
  height: 16px;
}
.empty-state svg,
.empty-icon svg {
  color: #94a3b8;
}
.table-section th,
.card-table th {
  color: #475569;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.status-pill--success {
  background: #dcfce7;
  color: #166534;
}
.status-pill--warning {
  background: #fef9c3;
  color: #713f12;
}
.status-pill--error {
  background: #fee2e2;
  color: #991b1b;
}
.status-pill--info {
  background: #e0f2fe;
  color: #075985;
}
.status-pill--neutral {
  background: #f1f5f9;
  color: #475569;
}

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