/* Exact time behind relative labels. Absolute tooltip: rows never grow. */
.component__exact-time {
    position: relative;
    cursor: help;
    text-decoration: underline dotted;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 3px;
    outline: none;
}
.component__exact-time::after {
    content: attr(data-exact-time);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
    z-index: 60;
    padding: 4px 8px;
    border-radius: 4px;
    background: #0b1424;
    border: 1px solid rgba(92, 154, 255, 0.45);
    color: #e8eefc;
    font-size: 12px;
    line-height: 1.3;
    font-weight: normal;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    pointer-events: none;
    display: none; /* not laid out while hidden, so a label near the edge never widens the page */
}
.component__exact-time:hover::after,
.component__exact-time:focus::after {
    display: block;
}
.component__exact-time:focus-visible {
    outline: 1px solid rgba(92, 154, 255, 0.8);
    outline-offset: 2px;
}
