.odometer-container {
    display: flex;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    justify-content: center;
    color: var(--primary);
    position: fixed;
    top: 0.5em;
    right: 0.4em;
    height: 1.25rem;
    padding: 0;
}

.odometer-digit {
    position: relative;
    width: calc(1ch + 2px);
    height: calc(1.25rem - 2px);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    background: linear-gradient(var(--background-secondary), var(--background) 25%, var(--background-secondary) 50%);
    margin: 0 2px;
}

.odometer-digit div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.odometer-digit span {
    height: 1.25rem;
    line-height: 1.25rem;
}