iframe {
    border: none; /* Removes any border */
    box-shadow: none; /* Removes any shadow effect */
    outline: none; /* Removes outline (if present) */
    width: 100%; /* Optional: Adjusts width to fit the container */
    height: 480px; /* Optional: Set a specific height */
}

.custom-marker {
    background-color: #0073aa;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.highlight {
    background-color: #ffffcc;
    transition: background-color 0.3s;
}

.related-locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.location-item {
    width: calc(33.333% - 20px); /* Default to three columns */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .location-item {
        width: calc(100% - 20px); 
    }
}