:root { --ink: #18201f; --muted: #65706d; --paper: #f4f6f3; --surface: #ffffff; --line: #ccd5d1; --accent: #086c56; --danger: #a12c34; --focus: #e6b84c; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: linear-gradient(135deg, #edf2ee 0%, var(--paper) 52%, #e8eeec 100%); font-family: "IBM Plex Sans", "Segoe UI", sans-serif; min-height: 100vh; }
header { min-height: 72px; padding: 18px clamp(18px, 4vw, 48px); background: #142522; color: white; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
header a { color: white; text-decoration: none; }
header strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
main { width: min(1120px, calc(100% - 32px)); margin: 32px auto 64px; }
h1, h2 { font-family: Georgia, serif; font-weight: 500; }
h1 { font-size: clamp(30px, 5vw, 48px); margin: 0 0 8px; }
.muted { color: var(--muted); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: clamp(18px, 3vw, 30px); margin-top: 24px; box-shadow: 0 14px 40px rgba(24, 32, 31, .07); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.module { display: block; min-height: 116px; padding: 20px; color: var(--ink); text-decoration: none; border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: 4px; background: white; }
.module:hover, .module:focus-visible { border-color: var(--accent); transform: translateY(-2px); }
label { display: grid; gap: 7px; color: var(--muted); font-size: 14px; }
input, select, textarea, button { font: inherit; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 11px 12px; background: white; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 3px solid color-mix(in srgb, var(--focus) 45%, transparent); border-color: var(--accent); }
button { border: 0; border-radius: 4px; padding: 11px 16px; cursor: pointer; background: var(--accent); color: white; font-weight: 650; }
button.secondary { background: #40504d; }
button.danger { background: var(--danger); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; }
form.grid { align-items: end; }
table { width: 100%; border-collapse: collapse; margin-top: 18px; }
th, td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.status { min-height: 24px; margin-top: 12px; }
.status.error { color: var(--danger); }
.temporary { padding: 12px; background: #fff7d8; border: 1px solid #e6c75f; border-radius: 4px; word-break: break-all; }
@media (max-width: 640px) { header { align-items: flex-start; } table { display: block; overflow-x: auto; } .actions button { width: 100%; } }