/* =========================================
   GEOINT REPORT LAYOUT FIX
========================================= */

#report-view {
    display: none;
    flex-direction: row;
    width: 100%;
    min-height: 100vh;
}

#report-view.report-view-active {
    display: flex;
}

.report-sidebar {
    width: 320px;
    min-width: 320px;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}

.report-content {
    flex: 1;
    min-width: 0;
    min-height: 100vh;
    overflow-y: auto;
}

.report-preview-body {
    width: 100%;
    min-height: 700px;
    display: block;
}

#report-dynamic-content {
    width: 100%;
    display: block;
}

.report-page {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: block;
}

#geoint-view.geoint-view-hidden {
    display: none !important;
}

/* Contenedores de mapa en capítulos del reporte */
.report-map-container,
.report-street-container,
.report-map-placeholder {
    width: 100%;
    height: 380px;
    min-height: 380px;
    display: block;
    background: #1a2332;
    border-radius: 8px;
    overflow: hidden;
}