/* src/styles.css */
:root {
  --bg: #eef2f6;
  --bg-alt: #e3e9f0;
  --surface: #ffffff;
  --surface-muted: #f6f8fb;
  --surface-strong: #dde5ef;
  --text: #17212b;
  --muted: #5d6b7b;
  --soft: #748394;
  --line: #d3dbe5;
  --line-strong: #bcc8d6;
  --accent: #1f5f94;
  --accent-strong: #17486f;
  --danger: #b43e3e;
  --success: #2e7d4f;
  --mono:
    "IBM Plex Mono",
    "SFMono-Regular",
    "SF Mono",
    "Cascadia Code",
    "Fira Code",
    monospace;
  --sans:
    "IBM Plex Sans",
    "Segoe UI",
    sans-serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(
      180deg,
      #f8fafc 0,
      var(--bg) 14rem,
      var(--bg) 100%);
  color: var(--text);
  font-family: var(--sans);
}
body {
  min-height: 100vh;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: #0f1a24;
  line-height: 1.2;
}
a,
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: var(--accent);
}
button,
.accent,
.ghost,
.danger {
  cursor: pointer;
}
button,
.accent,
.ghost,
.danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 0.35rem;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
button:hover,
.accent:hover,
.ghost:hover,
.danger:hover {
  border-color: #98a9bc;
}
button:disabled,
.accent:disabled,
.ghost:disabled,
.danger:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  border-color: var(--line);
  box-shadow: none;
}
button:disabled:hover,
.accent:disabled:hover,
.ghost:disabled:hover,
.danger:disabled:hover {
  border-color: var(--line);
}
.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ghost {
  background: var(--surface);
  color: var(--text);
}
.danger {
  background: #fff7f7;
  border-color: #dfb5b5;
  color: var(--danger);
}
.small {
  min-height: 2.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.3rem;
  font-size: 0.85rem;
}
.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
label {
  display: grid;
  gap: 0.45rem;
}
label span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
input,
textarea,
select {
  width: 100%;
  min-height: 2.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.35rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
}
textarea {
  resize: vertical;
  font-family: var(--mono);
  min-height: 7rem;
}
input:disabled {
  opacity: 0.75;
  background: var(--surface-muted);
}
input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(31, 95, 148, 0.18);
  outline-offset: 1px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: left;
}
th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface-muted);
}
tbody tr:hover {
  background: #f8fbfd;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-chip[data-state=published] {
  color: var(--success);
  border-color: rgba(46, 125, 79, 0.22);
  background: rgba(46, 125, 79, 0.08);
}
.status-chip[data-state=scheduled] {
  color: #8a5b16;
  border-color: rgba(184, 130, 35, 0.24);
  background: rgba(184, 130, 35, 0.09);
}
.status-chip[data-state=draft] {
  color: var(--muted);
}
.table-wrap {
  overflow-x: auto;
}
.empty-state {
  padding: 1.25rem;
  color: var(--muted);
}

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