.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 0 calc(var(--sidebar-width) + 24px) 0 20px;
    z-index: 2;
    border-bottom: 2px solid #000000;
    overflow: hidden;
}

.topbar #title {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0;
    transform: translateY(-50%);
    font-size: 24px;
    width: var(--sidebar-width);
    justify-content: center;
    white-space: nowrap;
}

.topbar .label {
    position: static;
    margin: 0;
    font-size: 18px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.topbar .label .name {
    font-weight: bold;
    margin-right: 0;
    color: #6f6f6f;
    flex-shrink: 0;
}

.topbar .label .value {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    min-width: 14ch;
    justify-content: flex-end;
}

.topbar .label .content {
    display: inline-block;
    min-width: 12ch;
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
