﻿/* wwwroot/styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#map {
    height: 600px;
}

.my-custom-marker {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 50%;
}
.my-title-container {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.marker-icon {
    background-color: yourColor; /* Use color based on your logic */
    width: 10px; /* Adjust width */
    height: 10px; /* Adjust height */
    border-radius: 50%; /* Keep circular shape */
}

.info.legend {
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
}

    .info.legend i {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        display: inline-block;
    }
