:root {
    color-scheme: light;
    --bg: #f5f7f9;
    --panel: #ffffff;
    --ink: #18212b;
    --muted: #657386;
    --line: #d9e0e8;
    --accent: #0c6b5f;
    --accent-2: #274c77;
    --danger: #b42318;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

a {
    color: var(--accent-2);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 24px;
    background: #15202b;
    color: #fff;
}

.brand,
.topbar a {
    color: #fff;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
}

.topbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.shell {
    width: min(1640px, calc(100vw - 28px));
    max-width: none;
    margin: 0 auto;
    padding: 20px 0 24px;
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

h1,
h2 {
    margin: 0;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
}

.search {
    display: flex;
    gap: 8px;
}

input,
select,
textarea,
button,
.button {
    min-height: 38px;
    border-radius: 6px;
    border: 1px solid var(--line);
    font: inherit;
}

input {
    padding: 8px 10px;
    min-width: 260px;
}

select,
textarea {
    padding: 8px 10px;
    width: 100%;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    cursor: pointer;
}

.button.secondary {
    background: #ffffff;
    color: var(--accent-2);
    border-color: var(--line);
}

.button.danger,
.button.secondary.danger {
    color: var(--danger);
    border-color: #f3b5ae;
}

.button.compact {
    min-height: 32px;
    padding: 5px 10px;
}

.table-wrap,
.panel,
.login-panel,
.map-panel,
.split article {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.metrics div {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.metrics strong {
    display: block;
    font-size: 24px;
}

.metrics span {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.split article,
.panel {
    padding: 16px;
}

.facts {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px 14px;
}

.facts dt,
.field-list dt {
    color: var(--muted);
    font-weight: 700;
}

.facts dd,
.field-list dd {
    margin: 0;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
}

.list small {
    display: block;
    color: var(--muted);
}

.object-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
}

.object-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 8px;
    align-items: start;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
}

.object-row small {
    grid-column: 2;
    color: var(--muted);
}

.object-sector-list {
    margin-bottom: 14px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.object-sector-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    background: #eef3f6;
    cursor: pointer;
    list-style: none;
}

.object-sector-list[open] .object-sector-head {
    border-bottom: 1px solid var(--line);
}

.object-sector-head::-webkit-details-marker {
    display: none;
}

.object-sector-head::before {
    content: "+";
    width: 18px;
    color: var(--accent-2);
    font-weight: 700;
}

.object-sector-list[open] .object-sector-head::before {
    content: "-";
}

.object-sector-head h3 {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.sector-select {
    min-width: 0;
    width: 16px;
    height: 16px;
    margin: 0 2px 0 0;
}

.object-sector-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.object-list {
    display: grid;
}

.object-list-row {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) minmax(140px, 220px);
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 5px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
}

.object-list-row.selectable {
    grid-template-columns: 22px minmax(0, 1fr) minmax(140px, 220px);
}

.object-select {
    min-width: 0;
    width: 15px;
    height: 15px;
    margin: 0;
}

.object-list-row:last-child {
    border-bottom: 0;
}

.object-list-row:hover {
    background: #f8fafc;
    text-decoration: none;
}

.object-name-link {
    display: inline-grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--ink);
}

.object-name-link:hover {
    text-decoration: none;
}

.object-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}

.object-list-row small {
    color: var(--muted);
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bulk-object-form {
    display: grid;
    gap: 0;
}

.bulk-actions {
    display: flex;
    justify-content: flex-end;
    margin: 4px 0 16px;
}

.archived-sector {
    opacity: .78;
}

.archived-sector .object-sector-head {
    background: #f8fafc;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 4px;
}

.client-search-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.client-search-form {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto auto;
    gap: 8px;
}

.client-search-form input {
    width: 100%;
}

.client-search-results {
    display: grid;
    gap: 14px;
}

.client-search-results h3 {
    margin: 0 0 8px;
    font-size: 14px;
}

.search-result-list {
    display: grid;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.search-result-row {
    display: grid;
    grid-template-columns: 18px minmax(0, .8fr) minmax(180px, 1.2fr);
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 13px;
}

.search-result-row:last-child {
    border-bottom: 0;
}

.search-result-row:hover {
    background: #f8fafc;
    text-decoration: none;
}

.search-result-row strong,
.search-result-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-row small {
    color: var(--muted);
}

.document-dot {
    background: var(--accent-2);
}

.field-list {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
}

.text-block {
    white-space: normal;
    line-height: 1.45;
}

.badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #fff1f0;
    color: var(--danger);
    font-size: 12px;
}

.highlight-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-weight: 700;
}

.highlight-dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #f7c948;
    box-shadow: 0 0 0 2px #fff7d6;
}

.link-button {
    background: transparent;
    border: 0;
    color: var(--accent-2);
    padding: 0;
    min-height: 0;
}

.row-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.row-actions form {
    margin: 0;
}

.inline-form {
    display: inline-flex;
    margin: 0;
}

.danger-text {
    color: var(--danger);
}

.muted-row {
    opacity: .58;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
}

.form-grid input {
    min-width: 0;
    width: 100%;
}

.span-2 {
    grid-column: span 2;
}

.form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 12px;
}

.tabs a {
    padding: 8px 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
}

.tabs a.active {
    background: var(--accent-2);
    color: #fff;
}

.map-panel {
    padding: 10px;
}

.map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.map-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    width: 32px;
    min-width: 32px;
    min-height: 32px;
    padding: 0;
    border-radius: 6px;
}

.map-zoom {
    min-width: 160px;
}

.map-type-select {
    min-height: 32px;
    max-width: 180px;
    padding: 5px 8px;
}

.check-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 700;
}

.check-control input {
    min-width: 0;
}

.map-stage {
    min-width: 0;
}

.map-viewport {
    position: relative;
    height: min(80vh, 820px);
    min-height: 520px;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    user-select: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    background:
        linear-gradient(#e2e7ef 1px, transparent 1px),
        linear-gradient(90deg, #e2e7ef 1px, transparent 1px),
        #f8fafc;
    background-size: 36px 36px;
}

.map-viewport.dragging {
    cursor: grabbing;
}

.map-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 1000px;
    height: 620px;
    transform-origin: 0 0;
}

.map-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.map-bg {
    fill: #eef3f6;
}

.map-sector {
    fill: #ffffff;
    stroke: #9fb0c2;
    stroke-width: 1.4;
    stroke-dasharray: 6 4;
    rx: 8px;
}

.map-sector-label {
    fill: #1f2937;
    font-size: 13px;
    font-weight: 700;
    pointer-events: none;
}

.map-sector-count {
    fill: var(--muted);
    font-size: 10px;
    pointer-events: none;
}

.map-ref {
    fill: #ffffff;
    stroke: #94a3b8;
    stroke-dasharray: 6 4;
}

.map-editor .map-ref {
    cursor: move;
}

.map-ref-group.selected .map-ref {
    stroke: #0c6b5f;
    stroke-width: 2;
}

.map-ref-label,
.map-label {
    font-size: 12px;
    fill: #1f2937;
}

.map-ref-label {
    pointer-events: none;
}

.map-label-bg {
    fill: rgba(255, 255, 255, .88);
    stroke: rgba(203, 213, 225, .78);
    rx: 4px;
}

.dense-map.labels-on:not(.detail-labels) .map-label,
.dense-map.labels-on:not(.detail-labels) .map-label-bg,
.labels-off .map-label,
.labels-off .map-label-bg {
    display: none;
}

.dense-map.labels-on:not(.detail-labels) .map-object:hover .map-label,
.dense-map.labels-on:not(.detail-labels) .map-object:hover .map-label-bg,
.dense-map.labels-on:not(.detail-labels) .map-object.selected .map-label,
.dense-map.labels-on:not(.detail-labels) .map-object.selected .map-label-bg,
.labels-off .map-object:hover .map-label,
.labels-off .map-object:hover .map-label-bg,
.labels-off .map-object.selected .map-label,
.labels-off .map-object.selected .map-label-bg {
    display: block;
}

.map-object.selected .map-label-bg,
.map-object:hover .map-label-bg {
    fill: #ffffff;
    stroke: #274c77;
}

.map-object.selected .map-label,
.map-object:hover .map-label {
    font-weight: 700;
}

.map-object.dim {
    opacity: .32;
}

.map-object.related {
    opacity: 1;
}

.map-line {
    stroke: #64748b;
    stroke-width: 2;
    opacity: .45;
    pointer-events: stroke;
}

.map-line:hover {
    stroke: #0c6b5f;
    stroke-width: 4;
    opacity: .9;
}

.map-line.dim {
    opacity: .12;
}

.map-line.related {
    stroke: #0c6b5f;
    stroke-width: 4;
    opacity: .92;
}

.relations-off .map-line {
    display: none;
}

.map-node {
    stroke: #fff;
    stroke-width: 3;
}

.map-object.selected .map-node {
    stroke: #0c6b5f;
    stroke-width: 5;
}

.map-object.connect-source .map-node {
    stroke: #f59e0b;
    stroke-width: 6;
}

.map-editor .map-object {
    cursor: move;
}

.map-resize-handle {
    fill: #0c6b5f;
    stroke: #fff;
    stroke-width: 2;
    cursor: nwse-resize;
}

.map-help,
.map-save-status {
    margin: 0 0 10px;
    font-size: 13px;
}

.map-workspace {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.map-workspace.with-editor {
    grid-template-columns: 190px minmax(0, 1fr) 300px;
}

.map-workspace .map-stage {
    min-width: 0;
}

.map-navigator {
    display: grid;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px;
    background: #ffffff;
    max-height: min(80vh, 820px);
    overflow: hidden;
}

.map-navigator input {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 13px;
}

.map-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.map-object-nav {
    display: grid;
    gap: 3px;
    overflow: auto;
    padding-right: 2px;
}

.map-object-nav button {
    display: grid;
    grid-template-columns: 13px minmax(0, 1fr);
    gap: 3px 6px;
    align-items: center;
    min-height: 28px;
    padding: 4px 6px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    text-align: left;
}

.map-object-nav .dot {
    width: 9px;
    height: 9px;
    margin-top: 0;
}

.map-object-nav button:hover,
.map-object-nav button.active {
    border-color: var(--line);
    background: #f8fafc;
}

.map-object-nav span:not(.dot),
.map-object-nav small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.map-object-nav small {
    grid-column: 2;
    color: var(--muted);
    font-size: 10px;
}

.map-object-panel {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    background: #ffffff;
    max-height: min(76vh, 760px);
    overflow: auto;
}

.map-object-panel h2 {
    margin-top: 0;
    font-size: 18px;
}

.map-object-form {
    display: grid;
    gap: 10px;
}

.map-object-form label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-weight: 700;
}

.map-object-form input,
.map-object-form select,
.map-object-form textarea {
    width: 100%;
    min-width: 0;
}

.map-object-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.object-field-editor {
    display: grid;
    gap: 8px;
}

.object-field-row {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr);
    gap: 6px;
    border-top: 1px solid var(--line);
    padding-top: 8px;
}

.object-field-row .check-control {
    grid-column: span 2;
}

.object-edit-form {
    display: grid;
    gap: 16px;
}

.replacement-box {
    display: grid;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.replacement-box p {
    margin: 0;
    font-size: 13px;
}

.object-edit-fields {
    display: grid;
    gap: 10px;
}

.object-edit-field-row {
    display: grid;
    grid-template-columns: minmax(160px, .8fr) minmax(260px, 1.4fr) auto;
    gap: 10px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.object-edit-field-row label:not(.check-control) {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-weight: 700;
}

.object-edit-field-row input,
.object-edit-field-row textarea {
    width: 100%;
    min-width: 0;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.section-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.success {
    color: #0c6b5f;
    font-weight: 700;
}

.object-images-panel {
    display: grid;
    gap: 14px;
}

.image-actions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 12px;
    align-items: start;
}

.image-upload-form,
.image-inbox-form {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fafc;
}

.image-upload-form label,
.image-inbox-form label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-weight: 700;
}

.image-upload-form input,
.image-inbox-form input {
    min-width: 0;
    width: 100%;
}

.image-inbox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.image-inbox-head small,
.image-inbox-row small,
.image-card small {
    color: var(--muted);
}

.image-inbox-list {
    display: grid;
    gap: 4px;
    max-height: 230px;
    overflow: auto;
}

.image-inbox-row {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #ffffff;
}

.image-inbox-row input {
    width: 14px;
    min-width: 0;
}

.image-inbox-row span,
.image-inbox-row small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.image-inbox-row small {
    grid-column: 2;
    font-size: 11px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.image-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #eef3f6;
}

.image-card-body {
    display: grid;
    gap: 7px;
    padding: 10px;
}

.image-card-body strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.image-card-body textarea {
    min-height: 56px;
    width: 100%;
}

.maintenance-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.maintenance-form {
    display: grid;
    grid-template-columns: minmax(160px, .6fr) minmax(220px, 1fr) minmax(180px, .8fr);
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #f8fafc;
}

.maintenance-form label {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-weight: 700;
}

.maintenance-form input,
.maintenance-form textarea {
    width: 100%;
}

.maintenance-list {
    display: grid;
    gap: 8px;
}

.maintenance-item {
    display: grid;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #ffffff;
}

.maintenance-item strong,
.maintenance-item small {
    display: block;
}

.maintenance-item small {
    margin-top: 3px;
    color: var(--muted);
}

.login-panel {
    max-width: 420px;
    margin: 8vh auto 0;
    padding: 22px;
}

.login-panel form {
    display: grid;
    gap: 12px;
}

.login-panel label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
}

.login-panel input {
    min-width: 0;
    width: 100%;
}

.error {
    color: var(--danger);
}

.archive-note {
    color: var(--danger);
    font-weight: 700;
}

.inline-table {
    border: 0;
}

.history-value {
    display: inline-block;
    max-width: 360px;
    padding: 3px 6px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 4px;
    vertical-align: top;
    white-space: pre-wrap;
    word-break: break-word;
}

.history-arrow {
    display: inline-block;
    margin: 0 6px;
    color: var(--muted);
}

.glpi-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.glpi-upload-form label {
    display: grid;
    min-width: min(460px, 100%);
    gap: 6px;
    color: var(--muted);
    font-weight: 700;
}

.glpi-upload-form input {
    width: 100%;
}

.glpi-metrics {
    margin: 14px 0;
}

.glpi-preview-wrap {
    max-height: 62vh;
    overflow: auto;
}

.glpi-preview-table {
    min-width: 1080px;
    font-size: 13px;
}

.glpi-preview-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8fafc;
}

.glpi-preview-table td {
    vertical-align: top;
}

.glpi-preview-table td strong,
.glpi-preview-table td small {
    display: block;
}

.glpi-preview-table td small {
    margin-top: 3px;
    color: var(--muted);
}

.glpi-row-create {
    background: #f4fbf8;
}

.glpi-row-unmapped {
    background: #fff7ed;
}

.glpi-change-list {
    display: grid;
    gap: 4px;
    margin: 8px 0 0;
    padding-left: 18px;
}

.glpi-change-list li {
    word-break: break-word;
}

@media (max-width: 760px) {
    .page-head,
    .search,
    .head-actions,
    .map-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .metrics,
    .split,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-list,
    .facts {
        grid-template-columns: 1fr;
    }

    .map-workspace {
        grid-template-columns: 1fr;
    }

    .map-workspace.with-editor {
        grid-template-columns: 1fr;
    }

    .image-actions-grid {
        grid-template-columns: 1fr;
    }

    .object-edit-field-row {
        grid-template-columns: 1fr;
    }

    .client-search-form,
    .search-result-row,
    .maintenance-form {
        grid-template-columns: 1fr;
    }

    .object-list-row {
        grid-template-columns: 18px minmax(0, 1fr);
    }

    .object-list-row.selectable {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    .object-list-row small {
        grid-column: 2;
        text-align: left;
    }

    .span-2 {
        grid-column: span 1;
    }
}
