:root { color-scheme: light; font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif; background: #eef2f1; color: #17211f; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
button, input { font: inherit; }
button { border: 0; border-radius: 6px; padding: 10px 14px; background: #0f766e; color: white; cursor: pointer; }
button:hover { background: #115e59; }
input { width: 100%; border: 1px solid #ccd7d4; border-radius: 6px; padding: 9px 10px; background: white; }
label { display: grid; gap: 5px; font-size: 13px; color: #42514e; }
a { color: #0f766e; text-decoration: none; }
.topbar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: #ffffff; border-bottom: 1px solid #dbe4e1; }
.topbar div { display: flex; gap: 14px; align-items: baseline; }
.topbar span { color: #687875; font-size: 13px; }
.topbar nav { display: flex; gap: 14px; align-items: center; }
.topbar nav form { margin: 0; }
.topbar nav button { background: #e7eeec; color: #21312e; padding: 8px 11px; }
.workspace { height: calc(100vh - 58px); display: grid; grid-template-columns: 380px minmax(0, 1fr); }
.sidebar { overflow: auto; background: #f8faf9; border-right: 1px solid #dbe4e1; padding: 16px; display: grid; align-content: start; gap: 18px; }
.sidebar section { display: grid; gap: 12px; }
h2 { margin: 0; font-size: 16px; }
.stack { display: grid; gap: 12px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.jobs { display: grid; gap: 9px; }
.job { text-align: left; display: grid; gap: 5px; padding: 10px; border: 1px solid #d6e0dd; border-radius: 8px; background: white; color: #17211f; }
.job.active { border-color: #0f766e; box-shadow: 0 0 0 2px rgba(15,118,110,.12); }
.job strong { font-size: 13px; }
.job small { color: #667673; }
.progress { height: 5px; overflow: hidden; background: #e2ebe8; border-radius: 99px; }
.progress span { display: block; height: 100%; background: #0f766e; }
.map-shell { position: relative; min-width: 0; }
#map { position: absolute; inset: 0; }
.statusbar { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; gap: 12px; align-items: center; justify-content: space-between; padding: 10px 12px; background: rgba(255,255,255,.93); border: 1px solid rgba(190,204,200,.9); border-radius: 8px; box-shadow: 0 8px 22px rgba(20,31,29,.12); }
.controls { display: flex; gap: 8px; }
.controls button { background: #263532; padding: 8px 10px; }
.login-body { display: grid; place-items: center; background: linear-gradient(135deg, #e8f0ed, #f7faf8); }
.login-panel { width: min(360px, calc(100vw - 28px)); display: grid; gap: 18px; padding: 26px; border: 1px solid #d6e0dd; border-radius: 8px; background: white; box-shadow: 0 16px 40px rgba(20,31,29,.12); }
.login-panel h1 { margin: 0; font-size: 26px; }
.login-panel form { display: grid; gap: 14px; }
.errorlist { margin: 0; padding-left: 18px; color: #b42318; }
@media (max-width: 820px) { .workspace { grid-template-columns: 1fr; grid-template-rows: auto 1fr; } .sidebar { max-height: 44vh; border-right: 0; border-bottom: 1px solid #dbe4e1; } .statusbar { flex-direction: column; align-items: stretch; } }
