@import url(/style.css);

body {
    background-color: var(--container-color);
    padding: 0;
    margin: 0;
    height: max-content;
}

#map {
    position: relative;
    width: 100%;
    height: 100vh;
}

.support-Link a {
    font-size: 1.45rem;
    text-decoration: none;
}


/*  map buttons */
.leaflet-bar {
    border: none !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    background-color: #fff !important;
    color: var(--btn-color) !important;
    font-size: 28px !important;
    font-weight: bold !important;
    width: 60px !important; height: 60px !important;
    line-height: 60px !important;
    border-radius: 25px !important;
}


.leaflet-top, .leaflet-left {
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    top: auto !important;
}
 
.leaflet-left .leaflet-control {
    margin-left: 0 !important;
    margin-right: 25px;
}
.leaflet-top .leaflet-control {
    margin-top: 0 !important;
    margin-bottom: 30px;
}


.reportIcon {
    width: 40px !important; height: 90px !important;
    background-size: contain;
    background-repeat: no-repeat;
}

.reportIcon.fresh {
    background-image: url(/media/svgs/red.svg);
}
.reportIcon.semiFresh {
    background-image: url(/media/svgs/violet.svg);
}
.reportIcon.stale {
    background-image: url(/media/svgs/purple.svg);
}
.reportIcon.oldest {
    background-image: url(/media/svgs/faded.svg);
}

@media (min-width: 1024px) {

    .map-Container {
        max-width: 100%;
        width: 100%;
        height: 100vh;
    }

    .map-Text-Row{
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    /* #map {
        width: 100%;
        height: 95%; 
    } */
    #map {
        position: relative;
        top: 0;
        width: 100%;
        height: 100vh;
    }
}
