/*:root {*/
/*    --primary-color: 130, 187, 22; !* Dunkelgrün (#82BB16) *!*/
/*    --secondary-color: 255, 255, 255; !* Weiß (#ffffff) *!*/
/*    --accent-color: 220, 255, 167; !* Helles Grün (#dcffa7) *!*/
/*    --background-color: 240, 240, 240; !* Hellgrau (#f0f0f0) *!*/
/*    --text-color: 0, 0, 0; !* Schwarz (#000000) *!*/
/*    --indicator-color: 204, 0, 0; !* Dunkelrot (#CC0000) *!*/
/*    --black-color: 0, 0, 0; !* Schwarz (#000000) *!*/

/*    --text-size_title: 35px; !* Title *!*/
/*    --text-size_xl: 25px;*/
/*    --text-size_l: 20px;*/
/*    --text-size_m: 15px;*/
/*    --text-size_s: 12px;*/
/*}*/

#map-container{
    /*height: 93%;*/
    width: 100%;
    height: 80dvh;
    background-color: rgb(var(--secondary-color));
}

#map-container-admin{
    height: 100vh;
    width: 100%;
    background-color: rgb(var(--secondary-color));
}

.highlighted-poi-icon {
    width: 30px;
    height: 30px;
    background-color: rgb(var(--secondary-color));
    border-radius: 60% 60% 0px 60%;
    border: 2px solid red;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.map-poi-icon {
    width: 30px;
    height: 30px;
    background-color: rgb(var(--secondary-color));
    border-radius: 60% 60% 0px 60%;
    border: 2px solid rgb(var(--primary-color));
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 1;
}

.map-poi-icon::before {
    content: "" ;
    background: white;
    position: absolute ;
    left: 50% ;
    top: 50% ;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 50% ;
    z-index: -1;
}

.cluster-group-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: medium;
}

.marker-cluster-small {
    /*background-color: rgba(218, 94, 94, 0.6);*/
    background-color: rgba(var(--primary-color), 0.1);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);

}
.marker-cluster-small div {
    /*background-color: rgba(226, 36, 36, 0.6);*/
    background-color: rgba(var(--primary-color), 0.3);
}

.marker-cluster-medium {
    background-color: rgba(var(--primary-color), 0.3);
    /*background-color: rgba(241, 211, 87, 0.6);*/
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.marker-cluster-medium div {
    /*background-color: rgba(240, 194, 12, 0.6);*/
    background-color: rgba(var(--primary-color), 0.6);
}

.marker-cluster-large {
    /*background-color: rgba(253, 156, 115, 0.6);*/
    background-color: rgba(var(--primary-color), 0.6);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.marker-cluster-large div {
    /*background-color: rgba(241, 128, 23, 0.6);*/
    background-color: rgba(var(--primary-color), 0.9);

}

.marker-cluster {
    background-clip: padding-box;
    border-radius: 20px;
}
.marker-cluster div {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;

    text-align: center;
    border-radius: 15px;
    font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster span {
    line-height: 30px;
}


/* Style for the marker */
.user-marker {
    transform-origin: center;
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

.user-marker circle {
    z-index: 1;
}

.user-marker circle.outer {
    stroke: rgb(var(--indicator-color));
    opacity: 0.5;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);

}
.user-marker circle.inner {
    fill: rgb(var(--secondary-color));
    stroke: rgb(var(--black-color));
}
.user-marker polygon.arrow {
    fill: rgb(var(--indicator-color));
    opacity: 0.5;
}
.user-marker polygon.shadow {
    fill: rgba(0, 0, 0, 0.2);
}




