body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 1.5rem;
  background: #050816;
  color: #e5e7eb;
}

h1 {
  margin-bottom: 1rem;
}

.columns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.column {
  flex: 1;
}

textarea {
  width: 100%;
  font-family: monospace;
  font-size: 0.85rem;
  background: #020617;
  color: #e5e7eb;
  border-radius: 0.5rem;
  border: 1px solid #1f2937;
  padding: 0.75rem;
}

button {
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #22c55e;
  color: #020617;
  font-weight: 600;
}

#decisions table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

#decisions th,
#decisions td {
  border: 1px solid #1f2937;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
}

.badge-allow {
  color: #22c55e;
  font-weight: 600;
}

.badge-deny {
  color: #f97316;
  font-weight: 600;
}

#graph {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.node {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #0f172a;
  border: 1px solid #1f2937;
}

.edge {
  font-size: 0.8rem;
}

