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

.map-container {
    height: 77vh;
    width: 100%;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

.map-main-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.map-content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

#map {
    flex: 1;
    min-height: 0;
    min-width: 0;
    position: relative;
}