<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==========================================================================
   Map Section
   ========================================================================== */
.map-container {
    --map-height: clamp(350px, 50vh, 600px);
    height: var(--map-height);
    width: 100%;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-box-shadow);
}

#map {
    height: 100%;
    width: 100%;
}

.marker {
    --marker-size: 12px;
    width: var(--marker-size);
    height: var(--marker-size);
    line-height: var(--marker-size);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    background-color: var(--bs-accent);
    border: 1px solid white;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.marker_center,
.marker_insel {
    --marker-size: 25px;
}

.mapboxgl-popup {
    max-width: 400px;
    font: var(--fs-small)/1.5 var(--bs-font-sans-serif);
}

/* ==========================================================================
   Operator Logos
   ========================================================================== */
.operator-logo {
    max-height: 24px;
    width: auto;
    object-fit: contain;
}

.connection .d-flex {
    min-height: 30px;
    align-items: center;
}

/* ==========================================================================
   Route Items
   ========================================================================== */
.route-item {
    scroll-margin-top: calc(var(--navbar-height) + var(--space-sm));
    background-color: var(--bs-gray-100);
    padding: var(--space-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    position: relative;
    contain: content;
}

.route-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--bs-primary);
    border-radius: 4px 0 0 4px;
    opacity: 0.1;
    transition: opacity var(--transition-base);
}

.route-item:hover::before {
    opacity: 0.3;
}</pre></body></html>