.arachne-page {
    min-height: 100vh;
}

.arachne-shell {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
}

.arachne-sidebar {
    position: sticky;
    top: 0;

    height: 100vh;
    padding: 1.5rem;

    display: flex;
    flex-direction: column;

    border-right: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(10, 8, 18, 0.8);
    backdrop-filter: blur(18px);

    z-index: 10;
}

.arachne-sidebar .brand {
    margin-bottom: 2rem;
}

.arachne-sidebar .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.arachne-sidebar .sidebar-nav a {
    padding: 0.7rem 0.8rem;

    border-radius: 9px;

    color: inherit;
    text-decoration: none;

    opacity: 0.65;

    transition:
        background 0.15s ease,
        opacity 0.15s ease;
}

.arachne-sidebar .sidebar-nav a:hover,
.arachne-sidebar .sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.055);
    opacity: 1;
}

.sidebar-status {
    margin-top: auto;

    display: flex;
    align-items: center;
    gap: 0.5rem;

    font-family: "DM Mono", monospace;
    font-size: 0.65rem;

    opacity: 0.6;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #9be0bb;

    box-shadow:
        0 0 10px rgba(155, 224, 187, 0.6);
}

.arachne-main {
    width: min(1400px, 100%);
    margin: 0 auto;

    padding: 3rem clamp(1.2rem, 4vw, 4rem);
}

.arachne-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 3rem;

    margin-bottom: 2rem;
}

.arachne-header h1 {
    margin: 0.3rem 0 1rem;

    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.95;
}

.arachne-header h1 span {
    display: block;
    opacity: 0.5;
}

.arachne-header .header-copy {
    max-width: 720px;

    line-height: 1.7;

    opacity: 0.72;
}

.signal-card {
    min-width: 250px;

    padding: 1.2rem;

    display: grid;
    grid-template-columns: auto 1fr;

    gap: 0.8rem;
    align-items: center;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
}

.signal-icon {
    grid-row: span 2;

    font-size: 2rem;
}

.signal-card small {
    display: block;

    font-size: 0.65rem;
    opacity: 0.5;
}

.signal-card strong {
    font-size: 0.9rem;
}

.signal-wave {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;

    gap: 4px;

    height: 22px;
}

.signal-wave i {
    display: block;

    width: 4px;
    height: 8px;

    border-radius: 999px;

    background: currentColor;
    opacity: 0.65;

    animation:
        signal-pulse 1s ease-in-out infinite alternate;
}

.signal-wave i:nth-child(2) {
    animation-delay: 0.15s;
}

.signal-wave i:nth-child(3) {
    animation-delay: 0.3s;
}

.signal-wave i:nth-child(4) {
    animation-delay: 0.45s;
}

.signal-wave i:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes signal-pulse {
    from {
        height: 5px;
    }

    to {
        height: 20px;
    }
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1rem;

    margin-bottom: 1rem;
}

.stat-card {
    padding: 1.2rem 1.4rem;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);
}

.stat-card span {
    display: block;

    margin-bottom: 0.4rem;

    font-size: 0.65rem;

    letter-spacing: 0.12em;

    opacity: 0.5;
}

.stat-card strong {
    font-size: 1.8rem;
}

.observatory-panel,
.data-panel {
    margin-top: 1rem;

    padding: 1.4rem;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(12px);
}

.panel-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 1rem;

    margin-bottom: 1rem;
}

.panel-heading h2 {
    margin: 0.2rem 0 0;
}

.telemetry-status {
    padding: 0.4rem 0.7rem;

    border-radius: 999px;

    border: 1px solid rgba(155, 224, 187, 0.2);

    color: #9be0bb;

    font-family: "DM Mono", monospace;

    font-size: 0.65rem;

    letter-spacing: 0.08em;
}

.feed-intro {
    max-width: 850px;

    line-height: 1.7;
}

.feed-intro p {
    margin: 0.5rem 0;
}

.data-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 1rem;
}

.data-list {
    display: flex;
    flex-direction: column;
}

.data-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto;

    align-items: center;

    gap: 1rem;

    padding: 0.85rem 0.7rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.055);
}

.data-row:first-child {
    border-top:
        1px solid rgba(255, 255, 255, 0.055);
}

.data-name {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.data-count {
    font-family: "DM Mono", monospace;

    opacity: 0.55;
}

.data-bar {
    grid-column: 1 / -1;

    height: 4px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.06);
}

.data-bar span {
    display: block;

    height: 100%;

    width: var(--bar-width);

    border-radius: inherit;

    background: currentColor;

    opacity: 0.55;
}

.about-panel {
    margin-top: 1rem;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 1rem;
}

.about-grid > div:first-child {
    line-height: 1.7;
}

.observatory-terminal {
    min-height: 100%;
}

.arachne-footer {
    display: flex;

    justify-content: space-between;

    gap: 1rem;

    margin: 2rem 0;

    padding: 1rem 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.7rem;

    opacity: 0.45;
}

@media (max-width: 1000px) {

    .arachne-header {
        flex-direction: column;
        align-items: stretch;
    }

    .signal-card {
        min-width: 0;
    }

    .data-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .arachne-shell {
        grid-template-columns: 1fr;
    }

    .live-feed-line {
        grid-template-columns:
            60px
            30px
            minmax(90px, 1fr)
            minmax(80px, 1fr)
            minmax(80px, 1fr);
    }

    .live-detail {
        display: none;
    }

    .arachne-sidebar {
        position: static;

        height: auto;

        border-right: 0;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);
    }

    .arachne-sidebar .sidebar-nav {
        flex-direction: row;

        overflow-x: auto;
    }

    .sidebar-status {
        margin-top: 1rem;
    }

    .arachne-main {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arachne-footer {
        flex-direction: column;
    }
}
/* =========================================================
   Live telemetry
   ========================================================= */

.live-feed-panel {
    margin-top: 1rem;
}

.live-terminal {
    padding: 1rem 1.2rem;
    background: #07070a;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
}

.live-feed {
    display: flex;
    flex-direction: column;

    max-height: 360px;
    overflow-y: auto;

    scrollbar-width: thin;
}

.live-feed-line {
    display: grid;

    grid-template-columns:
        70px
        34px
        minmax(100px, 1fr)
        minmax(100px, 1fr)
        minmax(90px, 1fr)
        80px;

    gap: 0.7rem;

    padding: 0.35rem 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.035);

    white-space: nowrap;
}

.live-feed-line:last-child {
    border-bottom: 0;
}

.live-time {
    color: #756b80;
}

.live-country {
    color: #93d9ff;
    text-transform: uppercase;
}

.live-product {
    color: #b8ceb4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-action {
    color: #f2a6d0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-username {
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-detail {
    color: #756b80;
    text-align: right;
}


/* =========================================================
   Telemetry tables
   ========================================================= */

.telemetry-tables {
    margin-top: 1rem;
}

.telemetry-table-wrap {
    overflow-x: auto;
}

.telemetry-table {
    width: 100%;

    border-collapse: collapse;

    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
}

.telemetry-table th {
    padding:
        0.65rem
        0.7rem;

    color: #756b80;

    font-size: 0.65rem;
    font-weight: 400;

    letter-spacing: 0.08em;
    text-align: left;
}

.telemetry-table th:last-child,
.telemetry-table td:last-child {
    text-align: right;
}

.telemetry-table td {
    padding:
        0.75rem
        0.7rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.055);
}

.telemetry-table td:first-child {
    color: #d8d0dd;
}

.telemetry-table td:last-child {
    color: #b8ceb4;
}
/* =========================================================
   Activity graph
   ========================================================= */

.activity-graph-panel {
    margin-top: 1rem;
}

.graph-controls {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.graph-range {
    padding:
        0.45rem
        0.7rem;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: inherit;

    font-family:
        "DM Mono",
        monospace;

    font-size: 0.65rem;

    letter-spacing: 0.05em;

    cursor: pointer;

    opacity: 0.55;

    transition:
        background 0.15s ease,
        opacity 0.15s ease,
        border-color 0.15s ease;
}

.graph-range:hover,
.graph-range.active {
    background:
        rgba(255, 255, 255, 0.07);

    opacity: 1;

    border-color:
        rgba(255, 255, 255, 0.16);
}

.activity-graph-wrap {
    width: 100%;
    overflow: hidden;
}

.activity-graph {
    position: relative;

    width: 100%;
    height: 320px;

    margin-top: 0.5rem;
}

.activity-graph svg {
    display: block;

    width: 100%;
    height: 100%;
}

.graph-grid {
    stroke:
        rgba(255, 255, 255, 0.07);

    stroke-width: 1;
}

.graph-axis {
    fill:
        rgba(255, 255, 255, 0.4);

    font-family:
        "DM Mono",
        monospace;

    font-size: 10px;
}

.graph-area {
    fill:
        rgba(242, 166, 208, 0.08);
}

.graph-line {
    fill: none;

    stroke:
        #f2a6d0;

    stroke-width: 2;

    stroke-linejoin: round;
    stroke-linecap: round;
}

.graph-point {
    fill:
        #f2a6d0;
}

.graph-message {
    height: 100%;

    display: grid;
    place-items: center;

    font-family:
        "DM Mono",
        monospace;

    font-size: 0.75rem;

    color:
        rgba(255, 255, 255, 0.4);
}

@media (max-width: 700px) {

    .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .activity-graph {
        height: 240px;
    }

}
/* =========================================================
   Observatory redesign
   Final overrides
   ========================================================= */


/* ---------------------------------------------------------
   Activity graph
   --------------------------------------------------------- */

.activity-graph-panel {
    margin-top: 1rem;
}

.activity-graph-panel .panel-heading {
    align-items: flex-end;
}

.graph-controls {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.graph-range {
    min-height: 38px;

    padding:
        0.55rem
        0.8rem;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.025);

    color: inherit;

    font-family:
        "DM Mono",
        monospace;

    font-size: 0.65rem;

    letter-spacing: 0.06em;

    cursor: pointer;

    opacity: 0.55;

    transition:
        background 0.15s ease,
        opacity 0.15s ease,
        border-color 0.15s ease,
        transform 0.15s ease;
}

.graph-range:hover {
    background:
        rgba(255, 255, 255, 0.055);

    opacity: 0.9;

    transform:
        translateY(-1px);
}

.graph-range.active {
    background:
        rgba(242, 166, 208, 0.10);

    border-color:
        rgba(242, 166, 208, 0.28);

    color:
        #f2a6d0;

    opacity: 1;
}

.graph-range:focus-visible {
    outline:
        2px solid
        rgba(242, 166, 208, 0.55);

    outline-offset: 2px;
}


/* ---------------------------------------------------------
   Graph canvas
   --------------------------------------------------------- */

.activity-graph-wrap {
    width: 100%;
    overflow: visible;
}

.activity-graph {
    position: relative;

    width: 100%;
    height: 340px;

    margin-top: 0.5rem;
}

.graph-canvas {
    position: relative;

    width: 100%;
    height: 100%;
}

.activity-graph svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
}


/* ---------------------------------------------------------
   Grid / axes
   --------------------------------------------------------- */

.graph-grid {
    stroke:
        rgba(255, 255, 255, 0.065);

    stroke-width: 1;
}

.graph-axis {
    fill:
        rgba(255, 255, 255, 0.42);

    font-family:
        "DM Mono",
        monospace;

    font-size: 10px;

    pointer-events: none;
}

.graph-axis-y {
    fill:
        rgba(255, 255, 255, 0.34);
}

.graph-axis-x {
    fill:
        rgba(255, 255, 255, 0.46);
}


/* ---------------------------------------------------------
   Activity line
   --------------------------------------------------------- */

.graph-area {
    fill:
        rgba(242, 166, 208, 0.075);

    pointer-events: none;
}

.graph-line {
    fill: none;

    stroke:
        #f2a6d0;

    stroke-width: 2.25;

    stroke-linejoin: round;
    stroke-linecap: round;

    vector-effect:
        non-scaling-stroke;

    pointer-events: none;
}

.graph-point {
    fill:
        #f2a6d0;

    stroke:
        #09080d;

    stroke-width: 2;

    vector-effect:
        non-scaling-stroke;

    transition:
        r 0.12s ease,
        stroke-width 0.12s ease;

    pointer-events: none;
}

.graph-point.is-selected {
    r: 6;

    stroke-width: 3;
}


/* ---------------------------------------------------------
   Invisible interaction areas
   --------------------------------------------------------- */

.graph-hit {
    fill:
        transparent;

    cursor:
        crosshair;
}


/* ---------------------------------------------------------
   Tooltip
   --------------------------------------------------------- */

.graph-tooltip {
    position: absolute;

    z-index: 5;

    min-width: 150px;

    padding:
        0.65rem
        0.75rem;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 10px;

    background:
        rgba(9, 8, 13, 0.94);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.35);

    backdrop-filter:
        blur(12px);

    pointer-events: none;

    transform:
        translateX(-50%);

    font-family:
        "DM Mono",
        monospace;

    transition:
        opacity 0.12s ease;
}

.graph-tooltip[hidden] {
    display: none;
}

.graph-tooltip-time {
    display: block;

    margin-bottom: 0.25rem;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.62rem;
}

.graph-tooltip-count {
    display: block;

    color:
        #f2a6d0;

    font-size: 1.05rem;

    line-height: 1.1;
}

.graph-tooltip small {
    display: block;

    margin-top: 0.2rem;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 0.58rem;
}


/* ---------------------------------------------------------
   Live telemetry
   --------------------------------------------------------- */

.live-feed-panel {
    margin-top: 1rem;
}

.live-terminal {
    padding:
        0.85rem
        1rem;

    background:
        #07070a;

    border-radius:
        14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    font-family:
        "DM Mono",
        monospace;

    font-size:
        0.75rem;
}

.live-feed {
    display: flex;
    flex-direction: column;

    max-height:
        360px;

    overflow-y: auto;

    scrollbar-width: thin;
}

.live-feed-line {
    display: grid;

    grid-template-columns:
        70px
        34px
        minmax(100px, 1fr)
        minmax(100px, 1fr)
        minmax(90px, 1fr)
        80px;

    gap:
        0.7rem;

    padding:
        0.42rem
        0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.035);

    white-space:
        nowrap;
}

.live-feed-line:last-child {
    border-bottom:
        0;
}

.live-time {
    color:
        #756b80;
}

.live-country {
    color:
        #93d9ff;

    text-transform:
        uppercase;
}

.live-product {
    color:
        #b8ceb4;

    overflow:
        hidden;

    text-overflow:
        ellipsis;
}

.live-action {
    color:
        #f2a6d0;

    overflow:
        hidden;

    text-overflow:
        ellipsis;
}

.live-username {
    overflow:
        hidden;

    text-overflow:
        ellipsis;
}

.live-detail {
    color:
        #756b80;

    text-align:
        right;
}


/* ---------------------------------------------------------
   Better panel rhythm
   --------------------------------------------------------- */

.observatory-panel,
.data-panel {
    scroll-margin-top:
        1.5rem;
}

.activity-graph-panel {
    padding-bottom:
        1rem;
}

.data-grid {
    margin-top:
        1rem;
}


/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 1000px) {

    .arachne-main {
        padding:
            2.5rem
            clamp(1.2rem, 3vw, 2.5rem);
    }

    .arachne-header {
        gap:
            2rem;
    }

    .activity-graph {
        height:
            310px;
    }

}


/* ---------------------------------------------------------
   Phone
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .arachne-main {
        padding:
            1.5rem
            0.9rem;
    }

    .arachne-header {
        margin-bottom:
            1.25rem;

        gap:
            1.25rem;
    }

    .arachne-header h1 {
        font-size:
            clamp(2.35rem, 12vw, 3.25rem);
    }

    .arachne-header .header-copy {
        line-height:
            1.6;
    }


    /* -----------------------------
       KPI cards
       ----------------------------- */

    .stats-grid {
        grid-template-columns:
            1fr 1fr;

        gap:
            0.65rem;

        margin-bottom:
            0.65rem;
    }

    .stat-card {
        min-width:
            0;

        padding:
            0.9rem;
    }

    .stat-card span {
        font-size:
            0.58rem;
    }

    .stat-card strong {
        font-size:
            1.45rem;
    }


    /* -----------------------------
       Panels
       ----------------------------- */

    .observatory-panel,
    .data-panel {
        padding:
            1rem;

        border-radius:
            14px;
    }

    .panel-heading {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.75rem;
    }


    /* -----------------------------
       Graph controls
       ----------------------------- */

    .graph-controls {
        width:
            100%;

        display:
            grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap:
            0.4rem;
    }

    .graph-range {
        width:
            100%;

        min-height:
            42px;

        padding:
            0.6rem
            0.35rem;

        font-size:
            0.58rem;
    }


    /* -----------------------------
       Graph
       ----------------------------- */

    .activity-graph {
        height:
            250px;

        margin-top:
            0.25rem;
    }

    .graph-axis {
        font-size:
            9px;
    }

    .graph-axis-y {
        display:
            none;
    }

    .graph-tooltip {
        min-width:
            135px;

        padding:
            0.55rem
            0.65rem;
    }


    /* -----------------------------
       Live feed
       -----------------------------
       Don't squeeze six desktop
       columns into a phone.
       Each event becomes a compact
       two-row terminal entry.
       ----------------------------- */

    .live-terminal {
        padding:
            0.7rem;
    }

    .live-feed {
        max-height:
            420px;
    }

    .live-feed-line {
        display:
            grid;

        grid-template-columns:
            auto 1fr auto;

        grid-template-areas:
            "time product detail"
            "country action action";

        gap:
            0.18rem
            0.55rem;

        padding:
            0.65rem
            0.15rem;

        white-space:
            normal;
    }

    .live-time {
        grid-area:
            time;

        font-size:
            0.66rem;
    }

    .live-product {
        grid-area:
            product;

        min-width:
            0;

        font-size:
            0.68rem;
    }

    .live-detail {
        grid-area:
            detail;

        font-size:
            0.62rem;

        text-align:
            right;
    }

    .live-country {
        grid-area:
            country;

        font-size:
            0.6rem;
    }

    .live-action {
        grid-area:
            action;

        min-width:
            0;

        font-size:
            0.63rem;
    }

    .live-username {
        display:
            none;
    }


    /* -----------------------------
       Tables
       ----------------------------- */

    .telemetry-table {
        font-size:
            0.7rem;
    }

    .telemetry-table th {
        padding:
            0.55rem
            0.45rem;
    }

    .telemetry-table td {
        padding:
            0.65rem
            0.45rem;
    }


    /* -----------------------------
       Footer
       ----------------------------- */

    .arachne-footer {
        gap:
            0.5rem;

        margin:
            1.5rem 0;
    }

}


/* ---------------------------------------------------------
   Very narrow phones
   --------------------------------------------------------- */

@media (max-width: 390px) {

    .arachne-main {
        padding-left:
            0.7rem;

        padding-right:
            0.7rem;
    }

    .stats-grid {
        grid-template-columns:
            1fr;
    }

    .stat-card {
        display:
            flex;

        justify-content:
            space-between;

        align-items:
            center;

        gap:
            1rem;
    }

    .stat-card span {
        margin-bottom:
            0;
    }

    .graph-axis-x {
        font-size:
            8px;
    }

}
/* =========================================================
   Observatory expandable telemetry lists
   ========================================================= */

.data-row-hidden[hidden] {
    display: none;
}

.data-more,
.telemetry-more {
    appearance: none;

    border: 0;

    background: transparent;

    color:
        rgba(242, 166, 208, 0.72);

    font-family:
        "DM Mono",
        monospace;

    font-size:
        0.65rem;

    letter-spacing:
        0.05em;

    cursor:
        pointer;

    transition:
        color 0.15s ease,
        opacity 0.15s ease;
}

.data-more {
    width: 100%;

    padding:
        0.65rem 0;

    text-align:
        left;
}

.data-more:hover,
.telemetry-more:hover {
    color:
        #f2a6d0;
}

.data-more:focus-visible,
.telemetry-more:focus-visible {
    outline:
        2px solid
        rgba(242, 166, 208, 0.45);

    outline-offset:
        3px;

    border-radius:
        4px;
}

.telemetry-row-hidden[hidden] {
    display: none;
}

.telemetry-more-row td {
    padding-top:
        0.7rem;

    padding-bottom:
        0.35rem;

    border-top:
        0;
}

.telemetry-more {
    padding:
        0.2rem 0;
}


/* Surface panel gets the same visual weight as the
   existing Products / Behaviour breakdowns. */

.surface-grid {
    margin-top:
        1rem;
}


/* On phones, don't make the expansion control microscopic. */

@media (max-width: 700px) {

    .data-more,
    .telemetry-more {
        min-height:
            38px;

        font-size:
            0.62rem;
    }

}