/* Minimal cockpit styling */

:root {
  --bg: #0f1115;
  --panel: #181a20;
  --text: #e4e6eb;
  --muted: #8b949e;
  --accent: #58a6ff;
  --danger: #f85149;
  --ok: #3fb950;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

header, footer {
  padding: 1rem 1.5rem;
  background: var(--panel);
  border-bottom: 1px solid #30363d;
}

header h1 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

nav a {
  color: var(--accent);
  margin-right: 1rem;
  text-decoration: none;
}

main {
  padding: 1.5rem;
}

section {
  background: var(--panel);
  border: 1px solid #30363d;
  border-radius: 0.5rem;
  padding: 1.25rem;
  max-width: 800px;
}

label {
  display: block;
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
}

input, button {
  font: inherit;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #30363d;
  background: #21262d;
  color: var(--text);
}

button {
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  border: none;
  margin-top: 1rem;
}

button.reject {
  background: var(--danger);
}

button.approve {
  background: var(--ok);
}

.proposal {
  margin-bottom: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--accent);
}

.proposal.destructive {
  border-left-color: var(--danger);
}

footer {
  border-top: 1px solid #30363d;
  border-bottom: none;
  color: var(--muted);
  font-size: 0.85rem;
}
