:root {
    --color-primary: #1E3F93;
    --color-secondary: #6AA942;
    --color-secondary-a: #6AA942A0;
    --color-text: #3F3E3E;

    --font-family: "Univers LT Std", Sans-serif, serif;
}

body {
    box-sizing: border-box;
    height: 100vh;
    margin: 0;
    padding: 0;
    /*background-color: #008e4d;*/
    background-color: azure;
    min-width: 240px;
    font-family: var(--font-family);
}

.button {
    color: white;
    background-color: var(--color-primary);
    border: none;
    padding: 6px 12px 4px 12px;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;

    font-family: "Univers LT Std", Sans-serif, serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.button:hover {
    /*color: var(--color-secondary);*/
    background-color: var(--color-secondary);
    color: var(--color-primary)
}

.map-layer-div > button {
    width: 20px !important;
}

.map-layer-div {
    left: 0.5em;
    top: 0.5em;
}

.ol-zoom, .ol-zoomslider{
    left: auto !important;
    right: 8px !important;
}

.ol-overviewmap{
    bottom: 2.5em !important;
}

.ol-control button:hover{
    background-color: var(--color-secondary-a) !important;
}

.collapsible {
    cursor: pointer;
    width: max-content;
    color: var(--color-primary);
    font-family: var(--font-family);
    font-size: large;
    font-weight: bold;
    background-color: inherit;
    border: none;
}
.collapsible:hover {
    color: var(--color-secondary);
}
.collapsible:hover + div {
    background-color: whitesmoke;
}
.collapsible:before {
    content: '\25B6';
    display: inline-block;
    margin-right: 6px;
}
.active:before {
    /*transform: rotate(90deg);*/
    content: '\25BC';
}
.collapsibleContent {
    display: none;
    padding-left: 30px;
}