/* 公車地圖標籤與路線互動（全域，Leaflet 掛在 document） */

/* 點選路線後 SVG 焦點框（藍色矩形） */
.leaflet-overlay-pane path.leaflet-interactive:focus,
.leaflet-overlay-pane path.leaflet-interactive:focus-visible {
    outline: none !important;
}

.leaflet-tooltip.bus-map-label {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(41, 98, 255, 0.45);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    color: #1e293b;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    white-space: nowrap;
    pointer-events: none;
}

.leaflet-tooltip.bus-map-label::before {
    border-top-color: rgba(41, 98, 255, 0.45);
}

.leaflet-tooltip.bus-map-label.bus-map-label-hidden {
    visibility: hidden !important;
    opacity: 0 !important;
}

.bus-map-label-text {
    margin-right: 2px;
}

.bus-map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    vertical-align: middle;
}

.bus-map-icon-e {
    color: #16a34a;
}

.bus-map-icon-w {
    color: #0284c7;
}
