html,
body {
    height: 100%;
}

body {
    overflow: hidden;
}

.app-shell {
    display: grid;
    grid-template-columns: minmax(320px, 25vw) 1fr;
    height: calc(100vh - 110px);
}

.sidebar {
    overflow-y: auto;
    border-right: 1px solid #e5e5e5;
    background: #fff;
}

.map-pane,
#map {
    height: 100%;
    min-height: 400px;
}

.auth-card {
    width: min(420px, 90vw);
}

.marker-list .marker-focus {
    text-align: left;
    font-weight: 600;
}

.trip-picker {
    max-height: 110px;
}

.colour-input {
    width: 52px;
    padding: 3px;
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .app-shell {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sidebar {
        order: 2;
    }

    .map-pane,
    #map {
        height: 55vh;
    }
}
.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay-form {
    position: absolute;
    top: 16px;
    right: 80px;
    width: 350px;
    z-index: 20;
}

.map-overlay-form .uk-card {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}


