.info-overlay {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.8rem;
    line-height: 1.7;
    min-width: 240px;
    max-width: 90vw;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.info-overlay a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: text-decoration-color 0.2s;
}

.info-overlay a:hover {
    text-decoration-color: rgba(255, 255, 255, 1);
}

.info-overlay dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1rem 0.8rem;
}

.info-overlay dt {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    white-space: nowrap;
}

.info-overlay dd {
    margin: 0;
    color: #fff;
    word-break: break-all;
}

/* GLightbox uses z-index ~9999; the GLightbox info overlay must sit above it. */
.info-overlay--glightbox {
    z-index: 1000000;
}
