/**
 * Betreiber-Detailseite: stabiles Logo, kompakte Standortliste und
 * Rendering-Optimierungen. Eingebunden von pages/operator/detail.php.
 */

.operator-logo-frame {
    width: 100%;
    max-width: 360px;
    height: 200px;
    margin: auto;
}

.flex-container {
    flex-direction: column;
}

.operator-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ca {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 3px;
}

.op-city-collapsed,
.op-station-collapsed {
    display: none;
}

.op-station-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.op-station-ul .op-station-item {
    position: relative;
}

.op-station-ul .op-station-item + .op-station-item {
    border-top: 1px solid #f3f4f6;
}

.op-station-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 6px 7px 24px;
    border-radius: 8px;
    color: #374151;
    font-size: .875rem;
    transition: background-color .15s ease, color .15s ease;
}

.op-station-link:hover {
    color: #15803d;
    background-color: #f0fdf4;
}

.op-station-street {
    overflow-wrap: anywhere;
    font-weight: 500;
}

.op-station-meta {
    flex-shrink: 0;
    color: #9ca3af;
    font-size: .75rem;
    white-space: nowrap;
}

/* Blitz-Icon per CSS statt Inline-SVG je Eintrag (spart HTML-Größe). */
.op-station-link::before {
    position: absolute;
    top: 11px;
    left: 6px;
    width: 12px;
    height: 12px;
    background-color: #16a34a;
    content: "";
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z"/></svg>') center / contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z"/></svg>') center / contain no-repeat;
}

.custom-marker-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
}

.user-location-marker {
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 2px 8px rgb(59 130 246 / 50%);
    animation: operator-location-pulse 2s infinite;
}

.station-popup {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@keyframes operator-location-pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(59 130 246 / 70%);
    }

    70% {
        box-shadow: 0 0 0 20px rgb(59 130 246 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(59 130 246 / 0%);
    }
}

/*
 * Der Inhalt bleibt vollständig im HTML und damit crawlbar. Browser dürfen
 * lediglich Layout und Paint der langen, weit unterhalb liegenden Liste bis
 * kurz vor dem Scrollen aufschieben.
 */
@supports (content-visibility: auto) {
    .operator-deferred-render {
        content-visibility: auto;
        contain-intrinsic-size: auto 1200px;
    }
}

@media screen and (min-width: 786px) {
    .operator-logo-frame {
        max-width: 200px;
        height: 200px;
    }

    .flex-container {
        flex-direction: row;
    }
}
