/* Global styles for Leaflet-created route-builder markers. These elements are
   appended to the map by Leaflet (outside Blazor's scoped-CSS reach), so their
   styles must live in a plain global stylesheet. */

.rb-stop-marker,
.rb-vertex {
    background: transparent;
    border: none;
}

.rb-stop-pin {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    font-family: 'Montserrat', sans-serif;
}

.rb-vertex-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #5263FF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .35);
    cursor: move;
}

.rb-draw-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(82, 99, 255, .94);
    color: #fff;
    padding: 9px 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    pointer-events: none;
    white-space: nowrap;
}
