/* n8n Hosting - Static Assets Stylesheet */

:root {
  --brand-500: #ed5522;
  --brand-600: #de3b18;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0f172a;
    --foreground: #f8fafc;
    --muted: #94a3b8;
    --border: #334155;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--foreground);
}

.content {
  margin-bottom: 3rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: var(--brand-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-600);
  text-decoration: underline;
}

footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.875rem;
}


