:root { color-scheme: light; font-family: system-ui, sans-serif; --ink: #17324d; --accent: #006b5f; --muted: #667085; --line: #d0d5dd; --bg: #f6f8fa; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--bg); }
header { background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 5vw; display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
header a { color: var(--ink); text-decoration: none; }
main { width: min(1180px, 92vw); margin: 2rem auto; }
.embed-view { background: #fff; }
.embed-view main { width: 100%; margin: 0; }
.embed-view .card { margin: 0; padding: clamp(1rem, 3vw, 2rem); border-color: #d6dee2; border-radius: .5rem; }
.embed-view button, .embed-view .button { background: #1c4387; }
.embed-view input:focus, .embed-view select:focus, .embed-view textarea:focus { outline: 3px solid rgb(28 67 135 / 18%); border-color: #1c4387; }
.card { background: #fff; border: 1px solid var(--line); border-radius: .75rem; padding: 1.25rem; margin-bottom: 1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
label { display: grid; gap: .35rem; margin: .7rem 0; font-weight: 600; }
input, select, textarea, button { font: inherit; padding: .65rem; border: 1px solid var(--line); border-radius: .4rem; }
textarea { min-height: 7rem; resize: vertical; }
button, .button { background: var(--accent); color: #fff; border: 0; cursor: pointer; display: inline-block; padding: .7rem 1rem; border-radius: .4rem; text-decoration: none; }
.secondary { background: #475467; }
.danger { background: #b42318; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { padding: .65rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.muted { color: var(--muted); }
.tag { display: inline-block; padding: .2rem .5rem; border-radius: 999px; background: #e4f5f2; margin: .1rem; }
.actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: end; }
.actions label { margin: 0; }
.error { color: #b42318; }
pre { white-space: pre-wrap; overflow-wrap: anywhere; }
@media (max-width: 700px) { main { width: 96vw; margin: 1rem auto; } table { display: block; overflow-x: auto; } }

