@import url("https://unpkg.com/leaflet/dist/leaflet.css");

#custom-map {
    width: 100%;
    height: 700px;
    border-radius: 0px;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    text-align: left;
    padding: 0;
    background-color: #fdfcf8;
    border-radius: 12px;
}

.leaflet-popup-content-wrapper {
    background-color: #fdfcf8;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-container {
	padding-right: 5px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 500 !important;
    line-height: 1.5;
    color: black;
}

.popup-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
}

.popup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.popup-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.popup-link {
	
    color: black !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
	white-space: nowrap;        
}
.popup-link:hover {
    color: #0069B4 !important;
    text-decoration: underline;
}

.leaflet-control-zoom {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 1000;
    border: none !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    margin-bottom: 5px;
}

.leaflet-right {
    width: 100% !important;
}

@media (max-width: 768px) {
    .leaflet-control-zoom {
        bottom: 20px !important;
        left: 20px !important;
    }
}
