/* ========== Speedometer widget ========== */
.speedo {
    display: block;
    position: fixed;
    bottom: 14px;
    left: 14px;
    z-index: 100;
    width: 78px;
    background: rgba(8, 18, 36, 0.88);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 7px 7px 6px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.speedo-svg {
    display: block;
    width: 100%;
}

.speedo-readout {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-top: -2px;
    line-height: 1;
}

.speedo-val {
    font-family: "Archivo", sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: #fff;
    letter-spacing: -0.03em;
    min-width: 22px;
    text-align: right;
}

.speedo-unit {
    font-size: 8px;
    color: #5d7fa0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.speedo-dist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: 9px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
    color: #7aaad0;
}

.speedo-dist svg {
    opacity: .6;
    flex-shrink: 0;
}
