/* Basic styling for the page */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    color: #333;
}

#map {
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Customize marker popup styles */
.leaflet-popup-content {
    font-size: 14px;
}

.leaflet-popup-content h3 {
    margin-top: 0;
    color: #007bff; /* Example: Blue color */
}

.custom-marker-icon {
    background-color: red; /* Or any color you want */
    width: 20px;
    height: 20px;
    display: block;
    left: -10px;
    top: -10px;
    position: relative;
    border-radius: 20px; /* Make it a circle */
    border: 1px solid #fff;
}