#aerialreports-map-container {
    display: flex;
    flex-direction: row;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
    border: 2px solid #4a90e2;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
#map {
    flex: 2 1 0;
    min-width: 0;
    min-height: 100vh;
    height: 100vh;
    border-right: 2px solid #4a90e2;
}
#sidebar {
    flex: 1 1 350px;
    max-width: 420px;
    min-width: 260px;
    background: #f9f9f9;
    padding: 24px 18px 30px 18px;
    border-left: 2px solid #4a90e2;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
#sidebar button, #sidebar select, #sidebar input {
    margin: 8px 0;
    width: 100%;
    font-size: 1em;
    box-sizing: border-box;
}
#structures-list .structure-block {
    background: #f5faff;
    border: 1px solid #b3e5fc;
    border-radius: 6px;
    margin-bottom: 14px;
    padding: 10px 8px 8px 8px;
}
#structures-list table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    background: #fff;
}
#structures-list th, #structures-list td {
    border: 1px solid #ccc;
    padding: 6px 8px;
    text-align: center;
    font-size: 1em;
}
#structures-list th {
    background: #e0f7fa;
}
.waste-table-horizontal th, .waste-table-horizontal td {
    font-size: 1em;
    text-align: center;
}
@media (max-width: 900px) {
    #aerialreports-map-container {
        flex-direction: column;
    }
    #map, #sidebar {
        min-width: 0;
        width: 100vw;
        max-width: 100vw;
        height: 50vh;
        min-height: 320px;
    }
    #sidebar {
        border-left: none;
        border-top: 2px solid #4a90e2;
        padding: 16px 8px 20px 8px;
    }
}