body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Poppins', sans-serif; 
}

#map { 
    width: 100%; 
    height: 100vh; 
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

.mapboxgl-ctrl {
    display: none !important;
}

.custom-marker {
    background-size: cover;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.mapboxgl-popup-content {
    text-align: center;
    max-width: 285px;
    width: 285px;
    padding: 10px;
}

.popup-content h3 {
    font-size: 16px;
    margin: 10px 0;
    font-weight: 600;
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.popup-button {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    text-align: center;
    color: white;
    background-color: black;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.popup-button:hover {
    background-color: #333;
}