@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
/* Root Variables */
:root {
    --color-primary: #005e5d;
    --color-secondary: #337e7d;
    --color-tertiary: #003b3a;
    --color-background: #e5eeee;
    --font-base: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-base);
    background-color: var(--color-background);
}

/* Customize Zoom Buttons */
.ol-zoom button {
    background-color: var(#e5eeee) !important;
    color: var(--color-tertiary) !important;
    border-radius: 4px !important;
    padding: 0.2rem 0.4rem !important;
    font-size: 1rem !important;
}

.ol-zoom {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 1001;
}
