:root {
    --primary: #0ea5a4;
    --secondary: #0284c7;
    --accent: #f59e0b;
    --success: #16a34a;
    --danger: #dc2626;
    --ink: #10223d;
    --muted: #5b6b82;
    --surface: #ffffff;
    --surface-soft: #f2f7fb;
    --border-soft: #d7e3f4;
    --shadow-md: 0 14px 36px rgba(8, 47, 73, 0.12);
    --shadow-lg: 0 20px 60px rgba(5, 34, 67, 0.2);
    --radius-lg: 18px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 16%, rgba(14, 165, 164, 0.2), transparent 40%),
        radial-gradient(circle at 88% 22%, rgba(2, 132, 199, 0.18), transparent 42%),
        linear-gradient(180deg, #edf5ff 0%, #f5f9ff 42%, #eef4fb 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

main {
    position: relative;
    z-index: 2;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

.orb-one {
    width: 280px;
    height: 280px;
    left: -80px;
    top: 140px;
    background: rgba(14, 165, 164, 0.26);
}

.orb-two {
    width: 320px;
    height: 320px;
    right: -90px;
    top: 260px;
    background: rgba(2, 132, 199, 0.2);
}

.site-header {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(210, 225, 245, 0.75);
    z-index: 10;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #083b56;
}

.brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 6px rgba(14, 165, 164, 0.12);
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(2, 132, 199, 0.22);
    background: #ffffff;
    padding: 2px;
}

.nav-link {
    color: #214062;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 13px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #083d5d;
    background: rgba(14, 165, 164, 0.13);
}

.btn-nav-login,
.btn-nav-signup {
    padding: 9px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-nav-login {
    background: #ffffff;
    border: 1px solid #bfd8f3;
    color: #0b4566;
}

.btn-nav-login:hover,
.btn-nav-login.active {
    background: #e9f3fe;
    color: #0b4566;
}

.btn-nav-signup {
    color: #ffffff;
    border: 0;
    background: linear-gradient(130deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.28);
}

.btn-nav-signup:hover,
.btn-nav-signup.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.hero-section {
    margin-top: 26px;
    padding: 72px 0;
}

.hero-panel {
    position: relative;
    background:
        linear-gradient(130deg, rgba(8, 70, 101, 0.95), rgba(3, 129, 173, 0.91)),
        url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=1600&q=80') center / cover;
    border-radius: 28px;
    color: #ffffff;
    padding: 52px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-panel::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    right: -150px;
    top: -170px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.24);
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.06;
    max-width: 660px;
    margin-bottom: 14px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.06rem;
    max-width: 640px;
    margin-bottom: 28px;
}

.hero-search {
    position: relative;
    z-index: 2;
}

.hero-search .form-control {
    min-height: 56px;
    border: none;
    border-radius: 14px;
    padding-inline: 18px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.hero-search .btn {
    min-height: 56px;
    border-radius: 14px;
    border: 0;
    padding-inline: 24px;
    font-weight: 700;
    background: linear-gradient(120deg, #f59e0b, #fb7185);
    color: #ffffff;
}

.hero-metrics {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 2;
}

.metric-card {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 16px;
}

.metric-card strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.metric-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
}

.section-space {
    padding: 58px 0;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 10px;
}

.section-note {
    color: var(--muted);
    margin-bottom: 26px;
}

.surface-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-preview {
    min-height: 350px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(170deg, rgba(14, 165, 164, 0.15), rgba(2, 132, 199, 0.12)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.7) 0px, rgba(255, 255, 255, 0.7) 26px, rgba(241, 247, 255, 0.85) 27px, rgba(241, 247, 255, 0.85) 54px);
}

.map-preview .marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--danger);
    position: absolute;
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.15);
}

.marker.m1 { top: 26%; left: 18%; }
.marker.m25 { top: 48%; left: 53%; }
.marker.a40 { top: 35%; right: 20%; }
.marker.m6 { bottom: 18%; left: 36%; }

.map-overlay {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(8, 52, 79, 0.83);
    color: #ffffff;
    border-radius: 14px;
    padding: 12px 14px;
    max-width: 250px;
    font-size: 0.9rem;
}

.road-card,
.quick-card,
.info-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--surface);
    height: 100%;
    box-shadow: 0 8px 24px rgba(6, 47, 79, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.road-tab-card {
    display: block;
    height: 100%;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #cfe1f6;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.95));
    box-shadow: 0 10px 24px rgba(12, 62, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.road-tab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(12, 62, 95, 0.15);
}

.road-tab-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #133454;
    line-height: 1.3;
}

.road-tab-count {
    margin-top: 8px;
    color: #0d5a8c;
    font-weight: 700;
}

.road-tab-card--city .road-tab-title {
    color: #0e4256;
}

.road-card:hover,
.quick-card:hover,
.info-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 32px rgba(6, 47, 79, 0.15);
}

.road-card .card-body,
.quick-card .card-body,
.info-card .card-body {
    padding: 22px;
}

.road-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.status-pill {
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 5px 9px;
    text-transform: uppercase;
}

.status-pill.online {
    color: #0f6f35;
    background: rgba(22, 163, 74, 0.15);
}

.status-pill.busy {
    color: #915f09;
    background: rgba(245, 158, 11, 0.2);
}

.status-pill.offline {
    color: #a11a1a;
    background: rgba(220, 38, 38, 0.16);
}

.btn-primary,
.btn-accent {
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    padding: 10px 16px;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
}

.btn-primary:hover {
    color: #ffffff;
}

.btn-accent {
    color: #ffffff;
    background: linear-gradient(120deg, var(--accent), #f97316);
}

.page-banner {
    margin-top: 26px;
    padding: 34px;
    background: linear-gradient(130deg, rgba(14, 165, 164, 0.95), rgba(2, 132, 199, 0.88));
    border-radius: 22px;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.page-banner h1 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.page-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.filter-toolbar {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 22px;
}

.list-group-custom .list-group-item {
    border: 1px solid var(--border-soft);
    margin-bottom: 8px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #14324f;
}

.list-group-custom .list-group-item:hover {
    background: #f2f8ff;
}

.traffic-badge {
    background: rgba(2, 132, 199, 0.14);
    color: #0d5a8c;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    margin: 0 8px 8px 0;
    color: #17405f;
    text-decoration: none;
    background: #ffffff;
    font-weight: 600;
}

.city-chip:hover {
    background: #eef6ff;
}

.live-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 20px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(196, 217, 242, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-md);
}

.map-canvas {
    min-height: 560px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    background:
        linear-gradient(145deg, rgba(14, 165, 164, 0.15), rgba(2, 132, 199, 0.08)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.78) 0px, rgba(255, 255, 255, 0.78) 18px, rgba(240, 248, 255, 0.92) 18px, rgba(240, 248, 255, 0.92) 36px);
    position: relative;
    overflow: hidden;
}

.map-canvas .cam-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--danger);
    border: 2px solid #ffffff;
}

.cam-pin.one { top: 23%; left: 28%; }
.cam-pin.two { top: 46%; left: 62%; }
.cam-pin.three { bottom: 28%; left: 35%; }
.cam-pin.four { top: 36%; right: 19%; }

.map-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    background: rgba(16, 34, 61, 0.84);
    color: #fff;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
}

.form-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 26px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-md);
}

.form-control,
.form-select,
textarea.form-control {
    border-radius: 12px;
    border: 1px solid #c7d8ef;
    padding: 11px 13px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(2, 132, 199, 0.18);
}

.camera-thumb {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d9e9fb, #e8f3ff);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5f89;
    font-weight: 700;
    font-size: 0.92rem;
}

.camera-thumb--image {
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: hidden;
}

.camera-image-frame {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
}

.camera-thumb--image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    display: block;
}

.camera-thumb-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(110deg, #e5effb 8%, #f4f8fe 18%, #e5effb 33%);
    background-size: 200% 100%;
    animation: cameraSkeletonShift 1.2s linear infinite;
}

.camera-image-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
    color: #f8fbff;
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(12, 48, 74, 0.55), rgba(16, 53, 83, 0.38));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.camera-image-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: cameraSpin 0.9s linear infinite;
}

.camera-image-frame.is-loaded .camera-image-loader {
    opacity: 0;
    visibility: hidden;
}

.camera-card-placeholder .card-body {
    pointer-events: none;
}

.camera-skeleton-line {
    height: 11px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: linear-gradient(110deg, #dfebf9 8%, #f7fbff 18%, #dfebf9 33%);
    background-size: 200% 100%;
    animation: cameraSkeletonShift 1.2s linear infinite;
}

.camera-skeleton-line--75 {
    width: 75%;
}

.camera-skeleton-line--50 {
    width: 50%;
}

.camera-skeleton-line--40 {
    width: 40%;
}

.camera-skeleton-line--35 {
    width: 35%;
}

@keyframes cameraSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cameraSkeletonShift {
    to {
        background-position-x: -200%;
    }
}

.camera-detail-hero {
    padding: 18px;
}

.camera-detail-image-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    background: #f4f9ff;
}

.camera-detail-image {
    width: 100%;
    height: min(58vh, 560px);
    object-fit: cover;
    display: block;
}

.camera-detail-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f6184;
    font-weight: 700;
    background: linear-gradient(135deg, #e3eefb, #f4f9ff);
}

.camera-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.camera-article {
    font-size: 1.05rem;
    color: #23435f;
    line-height: 1.8;
    white-space: pre-line;
}

.inline-status {
    font-weight: 700;
}

.inline-status.online { color: var(--success); }
.inline-status.offline { color: var(--danger); }
.inline-status.busy { color: #bd7d08; }

.camera-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.camera-card-action-form {
    margin: 0;
    margin-left: auto;
}

.camera-card-action-btn {
    min-width: 150px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .camera-card-actions {
        flex-wrap: wrap;
    }

    .camera-card-action-form {
        margin-left: 0;
    }

    .camera-card-action-btn {
        width: 100%;
        min-width: 0;
    }
}

.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    background: linear-gradient(150deg, #0e223f, #15395e);
    color: #ffffff;
    padding: 42px 0 20px;
}

.site-footer h5,
.site-footer h6 {
    font-family: 'Outfit', sans-serif;
}

.footer-copy {
    color: rgba(226, 235, 247, 0.84);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d7e8ff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 26px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: rgba(224, 236, 251, 0.8);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js-enhanced .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-enhanced .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-panel {
        padding: 34px 24px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .live-layout {
        grid-template-columns: 1fr;
    }

    .map-canvas {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 42px 0;
    }

    .page-banner {
        padding: 24px 18px;
    }

    .form-card {
        padding: 20px;
    }
}

.density-box {
    background: #eef6ff;
    border: 1px solid #d0e2f7;
}

.map-canvas {
    height: 560px;
}

.map-canvas--road {
    height: 360px;
    min-height: 360px;
}

.map-canvas--fallback {
    height: auto !important;
    min-height: 110px !important;
    padding: 14px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-style: dashed;
}

.camera-feed-list {
    display: grid;
    gap: 12px;
}

.camera-feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
}

.feed-meta {
    font-size: 0.84rem;
    color: var(--muted);
}

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

.stat-chip {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    background: #f8fcff;
    border: 1px solid #d0e2f7;
    border-radius: 10px;
    padding: 8px 10px;
}

.stat-chip strong {
    font-size: 1.1rem;
}

.stat-chip span {
    font-size: 0.84rem;
    color: var(--muted);
}

.status-pill {
    text-transform: capitalize;
}

.leaflet-popup-content {
    margin: 10px 12px;
    line-height: 1.4;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.admin-sidebar {
    position: sticky;
    top: 92px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
    padding: 16px;
    display: grid;
    gap: 8px;
}

.admin-sidebar__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #123a5d;
}

.admin-sidebar__link {
    text-decoration: none;
    color: #1f4668;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
}

.admin-sidebar__link:hover {
    border-color: #c9ddf3;
    background: #f3f8ff;
    color: #133f66;
}

.admin-sidebar__link.is-active {
    color: #0d4f7a;
    background: linear-gradient(180deg, rgba(14, 165, 164, 0.16), rgba(2, 132, 199, 0.1));
    border-color: #b9d8f2;
}

.admin-content {
    min-width: 0;
}

.admin-section {
    scroll-margin-top: 100px;
}

main[data-admin-panel="1"].is-loading .admin-content {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.admin-search-form .form-control {
    background: #fdfefe;
}

.rich-editor-wrapper {
    border: 1px solid #c7d8ef;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.rich-editor-wrapper .ql-toolbar.ql-snow {
    border: 0;
    border-bottom: 1px solid #dbe7f5;
    background: #f6fbff;
}

.rich-editor-wrapper .ql-container.ql-snow {
    border: 0;
    min-height: 220px;
    font-family: 'Manrope', sans-serif;
    color: #183a59;
}

.rich-editor-wrapper .ql-editor {
    min-height: 220px;
    font-size: 0.97rem;
    line-height: 1.65;
}

.admin-pagination-nav {
    margin-top: 6px;
}

.admin-pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 38px;
    padding: 0 12px;
    border-radius: 11px;
    border: 1px solid #c9dbf0;
    background: #ffffff;
    color: #1a4569;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(10, 53, 86, 0.08);
    transition: all 0.18s ease;
}

.admin-page-link:hover {
    border-color: #8ec2e9;
    background: #f2f8ff;
    color: #0e4f79;
    transform: translateY(-1px);
}

.admin-page-link.is-active {
    border-color: transparent;
    background: linear-gradient(130deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(2, 132, 199, 0.28);
}

.admin-page-link.is-disabled {
    border-color: #d8e4f2;
    background: #f6f9fd;
    color: #93a8bc;
    box-shadow: none;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .map-canvas {
        height: 460px;
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .map-canvas {
        height: 360px;
    }

    .map-canvas--road {
        height: 280px;
        min-height: 280px;
    }

    .camera-image-frame {
        height: 200px;
    }
}
