html, body {
    height: 100%;
    margin: 0;
}

.map-shell {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.map-sidebar {
    width: 300px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    background: #10263b;
    color: #e9eef3;
}

.map-sidebar-header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.map-sidebar-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1 1 auto;
}

.map-sidebar-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.map-section-title {
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .72rem;
    color: #8fa8bd;
    margin-bottom: .5rem;
}

.map-sidebar .form-check-label {
    font-size: .9rem;
}

.map-canvas {
    flex: 1 1 auto;
    position: relative;
}

.feature-info {
    background: rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 10px;
    max-height: 40vh;
    overflow: auto;
    color: #cdd9e4;
}

.feature-table {
    color: #cdd9e4;
    margin-bottom: 0;
    font-size: .8rem;
}

.feature-table th,
.feature-table td {
    border-color: rgba(255, 255, 255, .12);
    padding: .25rem .35rem;
}

.idmis-mark {
    font-weight: 700;
    letter-spacing: .08em;
}

@media (max-width: 768px) {
    .map-shell {
        flex-direction: column;
    }

    .map-sidebar {
        width: 100%;
        flex: 0 0 auto;
        max-height: 45vh;
    }
}
