/* ── Service point list scrollbar ───────────────────────────────────────────
   Overrides the browser default dark scrollbar so it blends with the white
   card background. Uses webkit (Chrome/Safari/Edge) + standard scrollbar-color
   (Firefox). Thumb colour matches the DHL muted stroke token.
──────────────────────────────────────────────────────────────────────────── */
.sp-list-scroll {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--color-stroke-muted) transparent; /* Firefox: thumb track */
}

.sp-list-scroll::-webkit-scrollbar {
    width: 4px;
}

.sp-list-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.sp-list-scroll::-webkit-scrollbar-thumb {
    background-color: var(--color-stroke-muted);
    border-radius: 99px;
}
