.dz-marker {
    transition: transform 0.1s ease;
}

.dz-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.dz-popup {
    position: absolute;
    background: white;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    max-width: 240px;
    z-index: 99999;
}

.dz-popup-inner img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 8px;
}

.dz-close {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

