/* Small compatibility layer for the dependency-free controls in wind.js. */
.jcf-select > select {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    appearance: none;
}

.jcf-select:focus-within {
    outline: 2px solid #314e41;
    outline-offset: 2px;
}

.jcf-select.is-open .jcf-select-opener::after {
    transform: rotate(180deg);
}

.c-map__marker:focus-visible,
.tablesorter-header-inner:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.c-map[data-map-state="unavailable"]::after {
    content: "Interactive map unavailable. Project filters and results remain available below.";
    display: block;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px;
    color: #314e41;
    background: rgba(255, 255, 255, 0.9);
}
