/* ── Clarksville Radar Plugin — Shortcode Container ──────────────────────── */
/* Strip any paragraph wrapper WordPress auto-inserts around shortcodes */
p:has(> .cvr-wrap) { margin: 0; padding: 0; }

.cvr-wrap {
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    container-type: inline-size;

    /* Theme variables — dark default */
    --bg-app:      #0d1117;
    --bg-bar:      #161b22;
    --bg-card:     #21262d;
    --border:      #30363d;
    --text:        #e6edf3;
    --text-sub:    #8b949e;
    --text-muted:  #6e7681;
    --accent:      #4493f8;
    --accent-glow: rgba(68,147,248,0.25);
    --green:       #1a7f37;
    --green-b:     #2ea043;
    --popup-bg:    #161b22;
    --hdr-bg:      linear-gradient(135deg, #003300 0%, #004700 100%);
    --hdr-text:    #ffffff;
    --hdr-sub:     rgba(255,255,255,0.85);
    --hdr-card:    rgba(0,0,0,0.18);
    --hdr-border:  rgba(255,255,255,0.25);
    --hdr-shadow:  0 4px 0 #000000;
}
.cvr-wrap[data-theme="light"] {
    --bg-app:      #f0f4f8;
    --bg-bar:      #ffffff;
    --bg-card:     #f6f8fa;
    --border:      #d0d7de;
    --text:        #24292f;
    --text-sub:    #57606a;
    --text-muted:  #8c959f;
    --accent:      #0969da;
    --accent-glow: rgba(9,105,218,0.15);
    --green:       #1a7f37;
    --green-b:     #2ea043;
    --popup-bg:    #ffffff;
    --hdr-bg:      linear-gradient(135deg, #003300 0%, #004700 100%);
    --hdr-text:    #ffffff;
    --hdr-sub:     rgba(255,255,255,0.85);
    --hdr-card:    rgba(0,0,0,0.18);
    --hdr-border:  rgba(255,255,255,0.25);
    --hdr-shadow:  0 4px 0 rgba(0,0,0,0.15);
}

/* ── Controls bar ─────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-controls {
    background: var(--bg-bar);
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    overflow: hidden;
    color: var(--text);
}
.cvr-wrap[data-theme="dark"] .cvr-controls { border-bottom: 1px solid #cccccc; }
.cvr-wrap[data-theme="light"] .cvr-status-bar { border-top: 1px solid #000000; }

/* ── Overflow panel ───────────────────────────────────────────────────────── */
.cvr-wrap .cvr-overflow-panel {
    display: none;
    background: var(--bg-bar);
    border-bottom: 1px solid var(--border);
    padding: 6px 14px 6px 0;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.cvr-wrap .cvr-overflow-panel.open { display: flex; }
.cvr-wrap .cvr-overflow-panel .cvr-grp { flex-wrap: wrap; }
/* Loop (priority-3) is always first into overflow — suppress its leading divider */
.cvr-wrap .cvr-overflow-panel .cvr-nav-section[data-priority="3"] > .cvr-divider { display: none; }
/* Hide button — always last in the overflow panel via order */
.cvr-wrap .cvr-overflow-close-divider { order: 9998; }
.cvr-wrap .cvr-overflow-close {
    order: 9999;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}
.cvr-wrap .cvr-overflow-close:hover { color: var(--text); border-color: var(--text-muted); }
.cvr-wrap.cvr-popped .cvr-overflow-close { display: none !important; }

/* ── Nav sections & groups ────────────────────────────────────────────────── */
.cvr-wrap .cvr-nav-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
    gap: 10px;
}
.cvr-wrap .cvr-nav-section .cvr-divider { margin: 0; }
.cvr-wrap .cvr-grp {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}
.cvr-wrap .cvr-grp-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-right: 2px;
    white-space: nowrap;
}
.cvr-wrap .cvr-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 6px;
    flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-sub);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
    line-height: 1;
}
.cvr-wrap .cvr-btn i { font-size: 0.8rem; }
.cvr-wrap .cvr-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 0 0 2px var(--accent-glow);
}
.cvr-wrap .cvr-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.cvr-wrap .cvr-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.cvr-wrap .cvr-btn.active:hover { background: var(--accent); filter: brightness(1.12); }
.cvr-wrap .cvr-btn.live   { background: var(--green);  border-color: var(--green-b); color: #fff; }
.cvr-wrap .cvr-btn.live:hover { background: var(--green-b); border-color: #3fb950; }
.cvr-wrap .cvr-btn.icon-only { padding: 5px 8px; }

.cvr-wrap .cvr-search:focus-visible,
.cvr-wrap .cvr-search:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
    border-color: var(--accent);
}
.cvr-wrap .cvr-anim-slider:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.cvr-wrap[data-theme="dark"] .cvr-btn-theme,
.cvr-wrap[data-theme="light"] .cvr-btn-theme {
    background: #1a7f37;
    border: 1px solid #2ea043;
    color: #ffffff;
}
.cvr-wrap[data-theme="dark"] .cvr-btn-theme:hover,
.cvr-wrap[data-theme="light"] .cvr-btn-theme:hover {
    background: #2ea043;
    border-color: #3fb950;
    box-shadow: 0 0 0 2px rgba(46,160,67,0.35);
}
.cvr-wrap[data-theme="dark"] .cvr-btn-theme:focus-visible,
.cvr-wrap[data-theme="light"] .cvr-btn-theme:focus-visible {
    outline: 2px solid #3fb950;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(46,160,67,0.35);
}

/* ── Screen-reader only utility ──────────────────────────────────────────── */
.cvr-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Live dot ─────────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #3fb950;
    margin-right: 2px;
    animation: cvr-pulse-dot 2s infinite;
}
@keyframes cvr-pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Map container ────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-map { flex: 1 1 0; min-height: 0; position: relative; }
.cvr-wrap .cvr-main-area { flex: 1 1 0; min-height: 0; display: flex; flex-direction: row; position: relative; }
.cvr-wrap .cvr-main-area .cvr-map { flex: 1 1 0; min-width: 0; }

/* Ad rail — hidden by default, only shown in popped-out (fullscreen) view */
.cvr-wrap .cvr-ad-rail { display: none; }
.cvr-wrap.cvr-popped .cvr-ad-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 340px;
    flex-shrink: 0;
    padding: 18px 18px;
    background: #f4f4f4;
    border-left: 1px solid #d0d7de;
    overflow-y: auto;
}
/* Normalize widget wrappers — WordPress block-group / theme `.widget` rules
 * can stack ~150px of bottom margin between adjacent widgets (e.g. Stay
 * Connected → Current Conditions). Kill margins on every level inside the
 * rail; the rail's own `gap` is the only spacing we want. */
.cvr-wrap.cvr-popped .cvr-ad-rail > *,
.cvr-wrap.cvr-popped .cvr-ad-rail .widget,
.cvr-wrap.cvr-popped .cvr-ad-rail .td_block_template_1,
.cvr-wrap.cvr-popped .cvr-ad-rail .wp-block-group,
.cvr-wrap.cvr-popped .cvr-ad-rail .wp-block-group__inner-container {
    margin: 0 !important;
    padding: 0 !important;
}
/* Restore the widget title's small bottom space (h4.block-title) since we
 * stripped its margin above. */
.cvr-wrap.cvr-popped .cvr-ad-rail .block-title,
.cvr-wrap.cvr-popped .cvr-ad-rail h4.block-title {
    margin: 0 0 6px !important;
}
/* Acurax "Stay Connected" social-icons widget — its inner container leaves
 * 30-40px of whitespace below the icon row from image line-height and the
 * widget's own bottom padding. Tighten so the gap to the next widget is
 * 15-20px (rail gap + this row's natural padding). */
.cvr-wrap.cvr-popped .cvr-ad-rail .acx_smw_float_fix,
.cvr-wrap.cvr-popped .cvr-ad-rail #acurax_si_widget_simple {
    padding: 0 !important; margin: 0 !important;
    line-height: 0;
}
.cvr-wrap.cvr-popped .cvr-ad-rail .acx-smw-social-icon-desc { padding-bottom: 8px !important; }
.cvr-wrap[data-theme="dark"].cvr-popped .cvr-ad-rail,
.cvr-wrap.cvr-popped[data-theme="dark"] .cvr-ad-rail {
    background: #000000;
    border-left-color: #1f2328;
}
/* Each widget Mark drops into the radar sidebar */
.cvr-wrap .cvr-rail-widget {
    width: 300px;
    max-width: 100%;
    flex-shrink: 0;
    color: #333;
}
.cvr-wrap[data-theme="dark"] .cvr-rail-widget { color: #ddd; }
.cvr-wrap .cvr-rail-widget-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: inherit;
    opacity: 0.7;
    margin: 0 0 6px;
    font-weight: 700;
}
.cvr-wrap .cvr-rail-widget iframe { display: block; max-width: 100%; }
.cvr-wrap .cvr-rail-empty {
    width: 300px; padding: 24px 18px;
    color: #6c757d; font-size: 0.85rem; text-align: center;
    background: rgba(0,0,0,0.04); border: 1px dashed #c4c9cf; border-radius: 6px;
}
.cvr-wrap[data-theme="dark"] .cvr-rail-empty {
    color: #9aa1a8; background: rgba(255,255,255,0.04); border-color: #2a2f35;
}

/* ── Popout control button — Leaflet manages position/size; we only override state ── */
.cvr-wrap .cvr-popout-bar { margin-top: 3px !important; }
.cvr-wrap .cvr-map-popout { font-size: 22px; }

/* ── Radar pulse marker ───────────────────────────────────────────────────── */
.cvr-radar-pulse-wrapper { position: relative; width: 16px; height: 16px; }
.cvr-radar-pulse-dot {
    position: absolute; top: 3px; left: 3px;
    width: 10px; height: 10px;
    background: #4493f8; border-radius: 50%; border: 2px solid #fff;
}
.cvr-radar-pulse-ring {
    position: absolute; top: 0; left: 0;
    width: 16px; height: 16px;
    border: 2px solid #4493f8; border-radius: 50%;
    animation: cvr-radar-ring 2s ease-out infinite; opacity: 0;
}
@keyframes cvr-radar-ring {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ── User location marker ─────────────────────────────────────────────────── */
.cvr-user-dot {
    width: 12px; height: 12px;
    background: #000000; border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,0.6);
}

/* ── Status bar ───────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-status-bar {
    background: linear-gradient(135deg, #000510 0%, #000d26 100%);
    border-top: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 3px 0 rgba(0,0,0,0.15);
    padding: 5px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    min-height: 32px;
    font-size: 0.75rem;
}
.cvr-wrap .cvr-status-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}
.cvr-wrap .cvr-status-item i { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.cvr-wrap .cvr-status-fresh  { color: #ffffff; font-weight: 600; }
.cvr-wrap .cvr-status-old    { color: #ffe066; }
.cvr-wrap .cvr-anim-slider   { flex: 1; min-width: 80px; max-width: 260px; accent-color: var(--accent); cursor: pointer; }
.cvr-wrap .cvr-anim-time     { min-width: 130px; font-variant-numeric: tabular-nums; }

/* ── Leaflet popup theming ────────────────────────────────────────────────── */
.cvr-wrap .leaflet-popup-content-wrapper {
    background: var(--popup-bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    color: var(--text) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
}
.cvr-wrap .leaflet-popup-tip { background: var(--popup-bg) !important; }
.cvr-wrap .leaflet-popup-content { font-size: 0.83rem; line-height: 1.6; margin: 10px 14px; }
.cvr-wrap .leaflet-popup-content strong { color: var(--accent); }
.cvr-wrap .leaflet-popup-content .cvr-detail { color: var(--text-sub); font-size: 0.75rem; margin-top: 2px; }

/* ── Radar legend ─────────────────────────────────────────────────────────── */
.cvr-radar-legend {
    background: linear-gradient(135deg, #003300 0%, #004700 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 9px 11px;
    font-size: 0.7rem;
    min-width: 150px;
    transition: padding 0.2s;
}
.cvr-legend-hdr {
    color: rgba(255,255,255,0.75); font-weight: 700; margin-bottom: 5px;
    text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.65rem;
    cursor: pointer; user-select: none;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.cvr-legend-toggle { font-size: 0.6rem; opacity: 0.8; transition: transform 0.2s; }
.cvr-legend-tab {
    display: none;
    writing-mode: vertical-rl; transform: rotate(180deg);
    cursor: pointer; user-select: none;
    padding: 10px 3px; align-items: center; gap: 6px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: rgba(255,255,255,0.85);
}
.cvr-legend-tab i { font-size: 0.7rem; }
.cvr-radar-legend.cvr-legend-collapsed { padding: 0; min-width: unset; }
.cvr-radar-legend.cvr-legend-collapsed .cvr-legend-hdr,
.cvr-radar-legend.cvr-legend-collapsed .cvr-legend-body { display: none; }
.cvr-radar-legend.cvr-legend-collapsed .cvr-legend-tab { display: flex; }
.cvr-legend-row    { display: flex; align-items: center; gap: 8px; color: #ffffff; line-height: 2; }
.cvr-swatch        { width: 26px; height: 9px; border-radius: 2px; flex-shrink: 0; }
.cvr-legend-footer { color: rgba(255,255,255,0.6); margin-top: 6px; font-size: 0.63rem; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 5px; }

/* ── Radar source badge ───────────────────────────────────────────────────── */
.cvr-radar-source {
    font-size: 0.65rem; font-weight: 700;
    padding: 1px 7px; border-radius: 10px;
    background: rgba(68,147,248,0.2); color: rgba(255,255,255,0.9);
    border: 1px solid rgba(68,147,248,0.4); white-space: nowrap;
}

/* ── Right-side utility cluster (theme + search + popout; never collapses) ── */
.cvr-wrap .cvr-controls-right {
    margin-left: auto;
    margin-right: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

/* ── Search input ─────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-search {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    width: 160px;
    min-width: 0;
    flex: 1 1 60px;
    max-width: 160px;
    outline: none;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Attribution ──────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-attr { margin-left: auto; margin-right: 25px; }
.cvr-wrap .cvr-attr a,
.cvr-wrap .cvr-status-bar a { color: #ffffff !important; text-decoration: none !important; text-shadow: 0 0 8px rgba(255,255,255,0.45); }
/* Compact: shown embedded, hidden when popped out */
.cvr-wrap .cvr-attr-full    { display: none; }
.cvr-wrap .cvr-attr-compact { display: inline; }
.cvr-wrap.cvr-popped .cvr-attr-compact { display: none; }
.cvr-wrap.cvr-popped .cvr-attr-full    { display: inline; }
/* Expand button ("Full Credits ↗") */
.cvr-wrap .cvr-attr-expand {
    background: none; border: none; padding: 0;
    color: #ffffff; font-size: inherit;
    cursor: pointer; line-height: 1; vertical-align: baseline;
    text-decoration: underline; text-underline-offset: 2px;
    transition: opacity 0.15s;
}
.cvr-wrap .cvr-attr-expand:hover { opacity: 0.75; }

/* ── Popout header (hidden until popped out) ──────────────────────────────── */
.cvr-wrap .cvr-popout-header {
    display: none;
    background: linear-gradient(135deg, #003300 0%, #004700 100%);
    box-shadow: 0 4px 0 #000000;
    padding: 6px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    min-height: 74px;
}
.cvr-wrap.cvr-popped .cvr-popout-header { display: flex; align-items: center; }
.cvr-wrap .cvr-hdr-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; align-self: center; }
.cvr-wrap .cvr-hdr-logo  { display: block; height: 62px; width: auto; flex-shrink: 0; align-self: center; margin: 0; padding: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); }
.cvr-wrap .cvr-hdr-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.3); flex-shrink: 0; align-self: center; }
.cvr-wrap .cvr-hdr-text { display: flex; flex-direction: column; justify-content: center; align-self: center; }
.cvr-wrap .cvr-hdr-title {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 1px 2px rgba(0,0,0,0.8);
}
.cvr-wrap .cvr-hdr-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    margin-top: 2px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.9), 0 1px 1px rgba(0,0,0,0.75);
}

/* ── Header ad zone ────────────────────────────────────────────────────────── */
.cvr-wrap .cvr-hdr-ad {
    flex: 1 1 auto;
    display: none;   /* JS measures space and shows when a zone fits */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    align-self: center;
}
.cvr-wrap .cvr-hdr-ad .cvr-ad-zone { display: none; }

.cvr-wrap .cvr-hdr-right {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 8px;
    flex-shrink: 0;
    padding-left: 12px;
    padding-right: 52px; /* clear the fixed-position X close button */
}
.cvr-wrap .cvr-hdr-clock {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 10px;
    text-shadow: 0 2px 3px rgba(0,0,0,0.9), 0 1px 1px rgba(0,0,0,0.75);
}
.cvr-wrap .cvr-hdr-theme {
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Popout — hide toolbar theme button (it moves to the header) ─────────── */
.cvr-wrap.cvr-popped .cvr-controls-right .cvr-btn-theme { display: none; }

/* ── Popout ───────────────────────────────────────────────────────────────── */
.cvr-wrap.cvr-popped {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important;
    z-index: 999999;
    border-radius: 0;
}

/* ── Responsive — container queries (works inside sidebars too) ───────────── */
@container (max-width: 600px) {
    .cvr-controls { padding: 5px 10px; }
    .cvr-btn { padding: 5px 8px; }
    .cvr-btn span { display: none; }   /* icon-only buttons */
    .cvr-search { display: none; }     /* hide search text box, icon stays */
}
@container (max-width: 380px) {
    .cvr-btn-theme { display: none; }  /* drop theme toggle on very narrow */
}

/* ── Range ring labels ───────────────────────────────────────────────────── */
.cvr-ring-label {
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.75);
    font-size: 10px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1.4;
}

/* ══ RADAR PAGE THEME SIDEBAR — TIGHTEN WIDGET SPACING ═══════════════════
 * Scoped to body.cvr-radar-page (added by the radar plugin only on pages
 * that contain the [clarksville_radar] shortcode). Same pattern as the
 * weather plugin's cw-weather-page rule — collapses the theme's
 * ~30-40px between-widget gap to 18px and tames the Acurax widget's
 * trailing whitespace. */
body.cvr-radar-page .td-ss-main-sidebar > aside.widget,
body.cvr-radar-page .td-ss-main-sidebar > div > aside.widget,
body.cvr-radar-page .td-pb-row .td-ss-main-sidebar aside.widget {
    margin-bottom: 18px !important;
}
body.cvr-radar-page .td-ss-main-sidebar > aside.widget:last-child {
    margin-bottom: 0 !important;
}
body.cvr-radar-page aside.acx-smw-social-icon-desc #acurax_si_widget_simple,
body.cvr-radar-page aside.acx-smw-social-icon-desc .acx_smw_float_fix {
    line-height: 0; padding: 0; margin: 0;
}
body.cvr-radar-page aside.acx-smw-social-icon-desc #acurax_si_widget_simple img {
    vertical-align: top;
}
