#new-arrivals-screen {
    width: 100%;
}
#new-arrivals-header  {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
#interval-links {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}
.interval-link {
    padding: 5px;
    border-radius: var(--border-radius);

    font-size: var(--news-font-size);
    line-height: var(--news-line-height);
}
.interval-link[active=true] {
    background-color: var(--color-text-accent);
    color: var(--color-text-secondary);
}
.interval-link[active=true]:visited {
    color: var(--color-text-secondary);
}
.arrivals-not-found {
    margin: 30px 0px 30px 0px;
    font-size: var(--header-font-size);
    line-height: var(--header-line-height);
}
#arrivals-count, #arrivals-not-found {
    text-align: center;
    margin-bottom: 30px;
    user-select: none;
}
#arrivals-count {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.document-hovered:hover {
    box-shadow: 0px 5px 10px var(--border-shadow);
    -webkit-transition: transform 250ms ease-in-out;
    -moz-transition: box-shadow 350ms ease-in-out;
    -o-transition: box-shadow 350ms ease-in-out;
    transition: box-shadow 350ms ease-in-out;
}