/* User location marker styles */
.custom-div-icon {
    background-color: transparent;
    border: 0;
}

.user-location-icon {
    background-color: transparent;
    border: 0;
}

.user-location-marker {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background-color: #3b82f6;
    border: 2px solid white;
    box-shadow: none;
    animation: pulse 2s infinite;
}

/* Price marker styles */
.pure-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fba28a;
    color: #0d1718;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    text-align: center;
    min-width: 60px;
    min-height: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
}

.pure-marker--highlighted {
    background-color: #0ab3b8;
    color: white;
    z-index: 1000;
}

