.pageEntries {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 1rem;
}

.pageEntries h3 {
    margin: 0;
}

.pageControls {
    display: flex;
    align-items: center;
    gap: .5rem;
}

#update-search {
    width: 220px;

    padding: .45rem .7rem;

    background: #202020;
    color: #E0E0E0;

    border: 1px solid #404040;
    border-radius: 6px;

    font: inherit;
}

#tag-filter {
    width: 120px;

    padding: .45rem .7rem;

    background: #202020;
    color: #E0E0E0;

    border: 1px solid #404040;
    border-radius: 6px;

    font: inherit;
    cursor: pointer;
}

#update-search:focus,
#tag-filter:focus {
    outline: none;
    border-color: #606060;
}

@media (max-width: 700px) {

    .pageEntries {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
    }

    .pageControls {
        width: 100%;
    }

    #update-search {
        flex: 1;
        width: auto;
    }

    #tag-filter {
        width: 120px;
    }

}