#bkntc_customer_location_map {
    width: 100%;
    min-height: 300px;
}

/* Fancy pin marker */
.bkntc-ul-marker {
    position: relative;
    width: 28px;
    height: 28px;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 4px 10px rgba(2,132,199,0.35);
    border: 2px solid #ffffff;
}
.bkntc-ul-marker:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}
.bkntc-ul-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(2,132,199,0.45);
    animation: bkntcPulse 1.8s infinite;
}
@keyframes bkntcPulse {
    0% { box-shadow: 0 0 0 0 rgba(2,132,199,0.45); }
    70% { box-shadow: 0 0 0 16px rgba(2,132,199,0); }
    100% { box-shadow: 0 0 0 0 rgba(2,132,199,0); }
}

/* Notice box styling */
.bkntc-customer-location-notice {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #0f172a;
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.6;
    font-size: 16px;
    margin: 3px 0px 15px 6px;
}
