
.select_time_vertical_item {
    display: grid;
    place-items: center;
}

.select_time__input__container {
    max-width: 90px;
}

.show_entries_and_states {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    gap: 1rem;
}

.select_invoice {
    width: 15%
}

.select_invoice > input {
    width: 100%;
    height: 22px;
}

@media screen and (max-width: 800px) {

    .show_entries_and_states {
        justify-content: center;
    }

    .show_entries_and_states > div:first-child {
        flex-basis: 100%;
        justify-content: center;
    }

    .navbar_path-divider {
        display: none !important;
    }

    .tags_container {
        width: 100%;
        justify-content: center;
    }

    .tags_container p{
        white-space: nowrap;
        flex: 1;
        text-align: center;
    }

    .tags_container > div:first-child {
        justify-content: center;
    }

    #filterTags {
        justify-content: center;
        gap: 10px 1rem;
    }
}