html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#map {
    width: 100vw; 
    height: 100vh;
}

.dkrundt_point {
    width: 16px;
    height: 16px;
    /* border-radius: 5px; */
    /* background-color: #008bdb; */
    /* border: 1px solid #000000; */
    background-image: url('/icons/bucket-fill_dk.svg');
    background-size: cover;
}

.skipper_point {
    width: 16px;
    height: 16px;
    background-image: url('/icons/bucket-fill_skipper.svg');
    background-size: cover;
}

.marker {
    width: fit-content;
    height: auto;
    margin: 0 0 0 0;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    color: #000000a9;
    background-color: #ffffff;
}

.marker p, .marker h4 {
    margin: 0;
    padding: 0;
}

#menu {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    width: fit-content;
    padding-left: 2px;
    border-radius: 2px;
    font-family: 'Open Sans', sans-serif;
}

#menu a {
    font-size: 13px;
    color: #272727;
    background-color: #f8f9fa;
    display: block;
    margin: 1px;
    padding: 0;
    padding: 10px;
    text-decoration: none;
    text-align: left;
    transition: all 0.2;
    font-weight: 600;
}

#menu a:hover {
    background-color: #dddddd;
}

#menu a.active {
    background-color: #4c515a;
    color: #ffffff;
}