.pickup-locations {
    margin-top: 20px;
}

.pickup-locations h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pickup-location {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative; /* Ensure positioning context */
}

.svg-area {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    overflow: hidden; /* Hide overflow to prevent scaling outside */
}

.indicator-circle {
    fill: red;
    transition: transform 0.5s ease-in-out;
    transform-origin: center; /* Scale from the center */
}

.pickup-selected .indicator-circle {
    fill: green;
    animation: zoom-in-out 1s ease-in-out infinite;
}

@keyframes zoom-in-out {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); /* Adjust scale as needed */
    }
}
