/**
 * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 *
 * Styling for the shared "Panel Sample Map" component (server-rendered, capped map of the
 * reference/comparison ancient individuals used by a report, shown on that report's anonymous
 * product marketing page). Tooltip content reuses the shared .unified-map-tooltip classes from
 * wwwroot/css/shared/map-pins-unified.css; this file only styles the section shell, map canvas,
 * and marker cluster bubbles specific to this component.
 */

.psm-section {
    margin: 48px 0;
}

.psm-header {
    text-align: center;
    margin-bottom: 20px;
}

.psm-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.psm-subtitle {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 0.95rem;
}

.psm-map-shell {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.psm-map {
    width: 100%;
    height: 420px;
}

.psm-transparency-note {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 12px;
}

/* Marker cluster bubble, styled to match the Shared Roots matches map design language. */
.psm-map-cluster-core {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 2px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    background-color: #c4956a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
    .psm-map {
        height: 320px;
    }
}
