/* Global probe tools — TTFB checker & Is It Down */

.global-probe-results-wrap {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

@media (min-width: 992px) {
    .global-probe-results-wrap .container {
        max-width: min(100vw - 2rem, 1680px);
        width: 100%;
    }
}

.global-probe-results-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    padding: 1.5rem 1.5rem 1.75rem;
}

.global-probe-results-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.global-probe-results-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6366f1;
}

.global-probe-results-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
}

.global-probe-panel-label {
    margin: 0 0 0.625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.global-probe-panel-hint {
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: #94a3b8;
    font-size: 0.75rem;
}

.global-probe-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.global-probe-legend--down {
    margin-top: 0.75rem;
}

.global-probe-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.global-probe-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.global-probe-legend-dot--fast,
.global-probe-legend-dot--up { background: #10b981; }
.global-probe-legend-dot--mid { background: #f59e0b; }
.global-probe-legend-dot--slow,
.global-probe-legend-dot--down { background: #ef4444; }
.global-probe-legend-dot--pending { background: #94a3b8; }

.global-probe-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.global-probe-stat {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.125rem;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.global-probe-stat--highlight {
    background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 100%);
    border-color: #c7d2fe;
}

.global-probe-stat-value {
    display: block;
    font-size: 1.625rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
}

.global-probe-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.35rem;
}

.global-probe-verdict {
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
}

.global-probe-verdict--up {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #a7f3d0;
}

.global-probe-verdict--down {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.global-probe-verdict--partial {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #b45309;
    border: 1px solid #fde68a;
}

.global-probe-verdict--unknown {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.global-probe-progress {
    margin-bottom: 1.25rem;
}

.global-probe-progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.global-probe-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #10b981);
    border-radius: 999px;
    transition: width 0.3s ease;
    width: 0%;
}

.global-probe-progress-text {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.global-probe-results-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, min(58vw, 1040px));
    gap: 1.5rem 1.75rem;
    align-items: stretch;
}

.global-probe-results-layout__main-col {
    min-width: 0;
}

.global-probe-results-layout__map-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

@media (min-width: 992px) {
    .global-probe-results-layout__map-col .global-probe-map-panel {
        position: sticky;
        top: calc(var(--hostcry-header-height, 72px) + 0.75rem);
        align-self: flex-start;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: calc(100vh - var(--hostcry-header-height, 72px) - 1.5rem);
        max-height: calc(100vh - var(--hostcry-header-height, 72px) - 1.5rem);
        overflow: hidden;
    }

    .global-probe-results-layout__map-col .global-probe-map-panel__head,
    .global-probe-map-legend,
    .global-probe-map-attribution {
        flex-shrink: 0;
    }

    .global-probe-leaflet-map-host {
        flex: 1 1 auto;
        min-height: 200px;
        position: relative;
    }

    .global-probe-leaflet-map-host .global-probe-leaflet-map {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100% !important;
    }
}

@media (max-width: 991px) {
    .global-probe-results-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .global-probe-results-layout__map-col {
        order: -1;
    }

    .global-probe-results-layout__map-col .global-probe-map-panel {
        height: auto;
        max-height: none;
        overflow: visible;
        display: block;
        padding: 0.85rem 0.9rem;
    }

    .global-probe-leaflet-map-host {
        position: relative;
        min-height: 0;
    }

    .global-probe-leaflet-map-host .global-probe-leaflet-map {
        position: relative;
        inset: auto;
        height: min(48vh, 380px) !important;
    }
}

.global-probe-map-panel {
    margin-bottom: 0;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.global-probe-map-panel__head {
    margin-bottom: 1rem;
    text-align: center;
}

.global-probe-map-panel__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.global-probe-map-panel__hint {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.global-probe-leaflet-map-host {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.global-probe-leaflet-map {
    width: 100%;
    height: min(48vh, 400px);
    background: #e2e8f0;
    z-index: 1;
}

.global-probe-map-legend {
    margin-top: 0.75rem;
    justify-content: center;
}

.global-probe-map-attribution {
    margin: 0.75rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

.global-probe-map-attribution a {
    color: #64748b;
}

/* Map tiles pass scroll through; markers stay interactive */
.global-probe-map-panel .leaflet-container {
    cursor: default;
    pointer-events: none;
}

.global-probe-map-panel .leaflet-tile-pane,
.global-probe-map-panel .leaflet-overlay-pane,
.global-probe-map-panel .leaflet-shadow-pane,
.global-probe-map-panel .leaflet-control-container {
    pointer-events: none !important;
}

.global-probe-map-panel .leaflet-control-attribution {
    pointer-events: auto !important;
}

.global-probe-map-panel .leaflet-marker-pane {
    pointer-events: none !important;
}

.global-probe-map-panel .leaflet-marker-pane > * {
    pointer-events: auto !important;
}

.global-probe-map-panel .leaflet-popup-pane {
    pointer-events: none !important;
}

.global-probe-map-panel .leaflet-popup-pane .leaflet-popup {
    pointer-events: auto !important;
}

.global-probe-table-wrap {
    overflow: visible;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.global-probe-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
}

.global-probe-table th,
.global-probe-table td {
    padding: 0.7rem 0.875rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}

.global-probe-table thead {
    position: relative;
    z-index: 30;
}

.global-probe-table thead th {
    background: #f8fafc;
    font-weight: 700;
    color: #334155;
    position: sticky;
    top: var(--hostcry-header-height, 72px);
    z-index: 30;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 1px 0 #e2e8f0;
}

.global-probe-table tbody tr {
    position: relative;
    z-index: 1;
    transition: background 0.15s ease;
}

.global-probe-table tbody tr:hover {
    background: #f8fafc;
}

.global-probe-table tbody tr.row-up {
    background: rgba(16, 185, 129, 0.04);
}

.global-probe-table tbody tr.row-down {
    background: rgba(239, 68, 68, 0.04);
}

.global-probe-table tr:last-child td {
    border-bottom: none;
}

.global-probe-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.global-probe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.global-probe-badge--up {
    background: #d1fae5;
    color: #047857;
}

.global-probe-badge--down {
    background: #fee2e2;
    color: #b91c1c;
}

.global-probe-badge--pending {
    background: #e2e8f0;
    color: #64748b;
}

.global-probe-ttfb-pill {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8125rem;
}

.global-probe-ttfb-fast,
.global-probe-ttfb-pill--fast {
    color: #047857;
    background: #ecfdf5;
}

.global-probe-ttfb-mid,
.global-probe-ttfb-pill--mid {
    color: #b45309;
    background: #fffbeb;
}

.global-probe-ttfb-slow,
.global-probe-ttfb-pill--slow {
    color: #b91c1c;
    background: #fef2f2;
}

.global-probe-cache-pill {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.global-probe-cache-pill--hit {
    color: #047857;
    background: #ecfdf5;
}

.global-probe-cache-pill--miss {
    color: #b45309;
    background: #fffbeb;
}

.global-probe-cache-pill--origin {
    color: #1d4ed8;
    background: #eff6ff;
}

.global-probe-cache-pill--other {
    color: #475569;
    background: #f1f5f9;
}

.global-probe-map-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.global-probe-map-marker--pending { background: #94a3b8; }
.global-probe-map-marker--up { background: #10b981; }
.global-probe-map-marker--down { background: #ef4444; }
.global-probe-map-marker--fast { background: #10b981; }
.global-probe-map-marker--mid { background: #f59e0b; }
.global-probe-map-marker--slow { background: #ef4444; }

.global-probe-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

/* SEO content sections */
.global-probe-why {
    background: #fff;
}

.global-probe-how {
    background: #f8fafc;
}

.global-probe-value-card,
.global-probe-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.global-probe-how .global-probe-step-card {
    background: #fff;
}

.global-probe-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff, #ede9fe);
    color: #4f46e5;
    font-size: 1.1rem;
    margin-bottom: 0.875rem;
}

.global-probe-value-card h3,
.global-probe-step-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.global-probe-value-card p,
.global-probe-step-card p {
    margin: 0;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.global-probe-step-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.global-probe-usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-probe-usecase-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0;
    color: #334155;
    line-height: 1.55;
    border-bottom: 1px solid #f1f5f9;
}

.global-probe-usecase-list li:last-child {
    border-bottom: none;
}

.global-probe-usecase-list i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.global-probe-locations {
    background: #fff;
}

.global-probe-locations-intro {
    max-width: 920px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #475569;
    line-height: 1.7;
}

.global-probe-locations-intro p {
    margin-bottom: 1rem;
}

.global-probe-region-block {
    margin-bottom: 2rem;
}

.global-probe-region-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.global-probe-region-count {
    font-weight: 500;
    color: #64748b;
    font-size: 0.9375rem;
}

.global-probe-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.625rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.global-probe-location-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.1rem 0.5rem;
    align-items: center;
    padding: 0.625rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.global-probe-location-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.global-probe-location-card .global-probe-flag {
    grid-row: 1 / span 2;
    margin: 0;
}

.global-probe-location-country {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.875rem;
}

.global-probe-location-city {
    grid-column: 2;
    font-size: 0.8125rem;
    color: #64748b;
}

@media (max-width: 991px) {
    .global-probe-results-wrap {
        padding: 1.25rem 0 2rem;
    }

    .global-probe-results-wrap .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .global-probe-table-panel {
        max-width: 100%;
        min-width: 0;
    }

    /* Hide city on small screens — keeps cache column on-screen without breaking sticky header */
    .global-probe-table th:nth-child(2),
    .global-probe-table td:nth-child(2) {
        display: none;
    }

    .global-probe-table {
        table-layout: fixed;
    }

    .global-probe-table--ttfb th:nth-child(1),
    .global-probe-table--ttfb td:nth-child(1) {
        width: 38%;
    }

    .global-probe-table--ttfb th:nth-child(3),
    .global-probe-table--ttfb td:nth-child(3) {
        width: 24%;
    }

    .global-probe-table--ttfb th:nth-child(4),
    .global-probe-table--ttfb td:nth-child(4) {
        width: 16%;
    }

    .global-probe-table--ttfb th:nth-child(5),
    .global-probe-table--ttfb td:nth-child(5) {
        width: 22%;
    }

    .global-probe-table--down th:nth-child(1),
    .global-probe-table--down td:nth-child(1) {
        width: 42%;
    }

    .global-probe-table--down th:nth-child(3),
    .global-probe-table--down td:nth-child(3) {
        width: 28%;
    }

    .global-probe-table--down th:nth-child(4),
    .global-probe-table--down td:nth-child(4) {
        width: 30%;
    }

    .global-probe-table th,
    .global-probe-table td {
        padding: 0.55rem 0.4rem;
        font-size: 0.75rem;
    }

    .global-probe-table td:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .global-probe-flag {
        width: 16px;
        height: 11px;
        margin-right: 0.25rem;
    }

    .global-probe-ttfb-pill,
    .global-probe-cache-pill {
        font-size: 0.625rem;
        padding: 0.1rem 0.3rem;
    }
}

@media (max-width: 575px) {
    .global-probe-results-card {
        padding: 1rem;
    }

    .global-probe-location-grid {
        grid-template-columns: 1fr;
    }
}

/* Detailed report — expandable per-country breakdown */
.global-probe-detailed-report {
    padding: 2.5rem 0 3rem;
    background: #0b1120;
}

.global-probe-detailed-report-card {
    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 1.5rem 1.25rem 1.25rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.global-probe-detailed-report-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.global-probe-detailed-report-title {
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: #f8fafc;
}

.global-probe-detailed-report-title span {
    color: #94a3b8;
    word-break: break-all;
}

.global-probe-detailed-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.global-probe-detailed-tab {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: transparent;
    color: #e2e8f0;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.global-probe-detailed-tab:hover {
    border-color: rgba(148, 163, 184, 0.6);
    color: #fff;
}

.global-probe-detailed-tab--active {
    background: #334155;
    border-color: #475569;
    color: #fff;
}

.global-probe-detailed-table {
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    overflow: hidden;
}

.global-probe-detailed-table-head,
.gp-detail-row {
    display: grid;
    grid-template-columns: minmax(130px, 1.35fr) 72px minmax(96px, 0.9fr) minmax(120px, 1.15fr) minmax(88px, 0.75fr) 88px 40px;
    gap: 0.65rem 0.75rem;
    align-items: center;
    padding: 0.85rem 1rem;
}

.global-probe-detailed-table-head {
    background: rgba(15, 23, 42, 0.85);
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.gp-detail-item {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.gp-detail-item:last-child {
    border-bottom: none;
}

.gp-detail-row {
    width: 100%;
    border: none;
    background: transparent;
    color: #e2e8f0;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: background 0.15s ease;
}

.gp-detail-row:hover {
    background: rgba(30, 41, 59, 0.55);
}

.gp-detail-item--open .gp-detail-row {
    background: rgba(30, 41, 59, 0.75);
}

.gp-detail-item--pending .gp-detail-row {
    cursor: default;
}

.gp-detail-cell--region {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    color: #f1f5f9;
    min-width: 0;
}

.gp-detail-cell--served-from {
    color: #cbd5e1;
    font-size: 0.8125rem;
}

.gp-detail-colo {
    color: #64748b;
    font-size: 0.75rem;
}

.gp-detail-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
}

.gp-detail-status--ok {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

.gp-detail-status--bad {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
}

.gp-detail-cdn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: #e2e8f0;
}

.gp-detail-cdn--cloudflare {
    color: #fb923c;
}

.gp-detail-muted {
    color: #64748b;
    font-size: 0.8125rem;
}

.gp-detail-pending {
    color: #64748b;
}

.gp-detail-cell--toggle {
    display: flex;
    justify-content: center;
    color: #38bdf8;
    font-size: 0.875rem;
}

.gp-detail-expand {
    padding: 0 1rem 1rem;
    background: rgba(15, 23, 42, 0.65);
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.gp-detail-headers {
    margin: 0;
    padding: 0.75rem 0 0;
}

.gp-detail-header-row {
    display: grid;
    grid-template-columns: minmax(120px, 180px) 1fr;
    gap: 0.75rem 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.gp-detail-header-row:last-child {
    border-bottom: none;
}

.gp-detail-header-row dt {
    margin: 0;
    color: #94a3b8;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: lowercase;
    word-break: break-word;
}

.gp-detail-header-row dd {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.8125rem;
    line-height: 1.5;
    word-break: break-all;
}

.gp-detail-no-headers {
    margin: 0.75rem 0 0;
    color: #64748b;
    font-size: 0.875rem;
}

.global-probe-detailed-average {
    display: grid;
    grid-template-columns: minmax(130px, 1.35fr) 72px minmax(96px, 0.9fr) minmax(120px, 1.15fr) minmax(88px, 0.75fr) 88px 40px;
    gap: 0.65rem 0.75rem;
    align-items: center;
    padding: 0.95rem 1rem;
    background: rgba(15, 23, 42, 0.92);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.global-probe-detailed-average-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    color: #f8fafc;
}

@media (max-width: 991px) {
    .global-probe-detailed-report {
        padding: 1.5rem 0 2rem;
    }

    .global-probe-detailed-report-card {
        padding: 1rem 0.75rem;
    }

    .global-probe-detailed-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .global-probe-detailed-table-head,
    .gp-detail-row,
    .global-probe-detailed-average {
        min-width: 720px;
    }

    .global-probe-detailed-table-head span:nth-child(4),
    .gp-detail-cell:nth-child(4),
    .global-probe-detailed-average span:nth-child(4) {
        display: none;
    }

    .global-probe-detailed-table-head,
    .gp-detail-row,
    .global-probe-detailed-average {
        grid-template-columns: minmax(120px, 1.4fr) 64px minmax(88px, 0.9fr) minmax(80px, 0.8fr) 80px 36px;
    }
}
