:root { --brand: #E86033; --brand-dark: #c94d24; --ink: #1f2328; --muted: #6b7280; --line: #e5e7eb; --bg: #f6f7f9; --ok: #2E7D32; --okbg: #E8F5E9; --red: #C62828; --redbg: #FDECEA; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 15px/1.5 -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
a { color: var(--brand-dark); text-decoration: none; } a:hover { text-decoration: underline; }
.top { display: flex; align-items: center; gap: 18px; padding: 10px 22px; background: #fff; border-bottom: 3px solid var(--brand); }
.brand { font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -.2px; } .brand span { color: var(--brand); }
.brand em { font-style: normal; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 999px; vertical-align: middle; margin-left: 6px; letter-spacing: .06em; }
.brand em.lab { background: #FFF1E8; color: var(--brand-dark); border: 1px solid #F5C6AE; } .brand em.app { background: var(--okbg); color: var(--ok); }
.top nav { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 22px 22px 60px; }
.foot { text-align: center; color: var(--muted); font-size: 12.5px; padding: 18px; border-top: 1px solid var(--line); }
h1 { font-size: 24px; margin: 0; } h2 { font-size: 15px; margin: 0 0 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; } .row.head { justify-content: space-between; margin-bottom: 14px; }
.tools { display: flex; gap: 12px; align-items: center; }
.crumb { color: var(--muted); font-size: 13px; margin: 0 0 6px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin-bottom: 16px; }
.card.login { max-width: 420px; margin: 60px auto; } .card.login h1 { margin-bottom: 12px; }
details.nova summary { cursor: pointer; font-weight: 600; color: var(--brand-dark); }
details.nova[open] summary { margin-bottom: 12px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 14px; } .grid .w2 { grid-column: span 2; } .grid .w3 { grid-column: span 3; }
@media (max-width: 760px) { .grid { grid-template-columns: 1fr; } .grid .w2, .grid .w3 { grid-column: span 1; } }
label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--muted); font-weight: 500; }
input, select { font: inherit; padding: 8px 10px; border: 1px solid #d5d8de; border-radius: 6px; background: #fff; color: var(--ink); }
input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,96,51,.15); }
input[type=search] { min-width: 280px; }
button.pri { font: inherit; font-weight: 600; background: var(--brand); color: #fff; border: 0; border-radius: 6px; padding: 9px 18px; cursor: pointer; }
button.pri:hover { background: var(--brand-dark); }
button.lnk { font: inherit; background: none; border: 0; color: var(--brand-dark); cursor: pointer; padding: 0; } button.lnk:hover { text-decoration: underline; }
form.inline { display: inline; } form.right { text-align: right; margin-top: 8px; }
.err { background: var(--redbg); color: var(--red); border: 1px solid #EF9A9A; padding: 8px 12px; border-radius: 6px; }
.ok { color: var(--ok); font-weight: 600; }
.muted { color: var(--muted); } .mono { font-family: Consolas, Menlo, monospace; }
table.list { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.list th { text-align: left; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; padding: 10px 12px; background: #fafafa; border-bottom: 1px solid var(--line); }
.list td { padding: 10px 12px; border-bottom: 1px solid #f0f0f0; vertical-align: top; } .list tr:last-child td { border-bottom: 0; }
.list.small { border: 0; } .list.small td { padding: 7px 4px; } .list .acts { text-align: right; white-space: nowrap; }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: #FFF1E8; color: var(--brand-dark); border: 1px solid #F5C6AE; white-space: nowrap; }
.tag.out { background: #eef2ff; color: #3730a3; border-color: #c7d2fe; }
.moduly { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin: 6px 0 20px; }
.tile { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; color: var(--ink); transition: box-shadow .15s, border-color .15s; }
.tile:hover { text-decoration: none; border-color: var(--brand); box-shadow: 0 4px 16px rgba(232,96,51,.15); }
.tile .ico { font-size: 26px; } .tile .nm { font-weight: 700; font-size: 16px; } .tile .ds { color: var(--muted); font-size: 13px; }
.tile .st { margin-top: 6px; font-size: 12.5px; color: var(--brand-dark); font-weight: 600; }
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } @media (max-width: 900px) { .cols { grid-template-columns: 1fr; } }
ul.verze { margin: 0; padding-left: 18px; } ul.verze li { margin-bottom: 4px; }
em.arch { font-style: normal; font-size: 12px; background: #eee; color: #555; padding: 2px 8px; border-radius: 999px; vertical-align: middle; }
code { background: #f1f1f1; padding: 1px 5px; border-radius: 4px; font-size: 13px; }
