/* Minimal readable styles for a one-user internal console. */
* { box-sizing: border-box; }
body { font-family: system-ui, -apple-system, sans-serif; margin: 0; color: #1a1a1a; background: #fafafa; }
header { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 1rem; background: #1f2937; color: #fff; }
header a { color: #cbd5e1; text-decoration: none; margin-right: 0.8rem; }
header a:hover { color: #fff; }
header button { background: none; border: 1px solid #64748b; color: #cbd5e1; border-radius: 4px; padding: 0.2rem 0.6rem; cursor: pointer; }
main { max-width: 72rem; margin: 1.5rem auto; padding: 0 1rem; }
table { border-collapse: collapse; width: 100%; background: #fff; }
th, td { border: 1px solid #d1d5db; padding: 0.4rem 0.6rem; text-align: left; font-size: 0.9rem; }
th { background: #f3f4f6; }
code { background: #f3f4f6; padding: 0.1rem 0.3rem; border-radius: 3px; }
input[type="password"], input[type="text"] { padding: 0.4rem; border: 1px solid #9ca3af; border-radius: 4px; }
button { padding: 0.4rem 0.9rem; border: 1px solid #374151; border-radius: 4px; background: #374151; color: #fff; cursor: pointer; }
.err { color: #b00; }
