.new-list {
    height: 100%;
}

.new-list-item {
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.new-list-item .date {
    width: 10em;
    text-align: right;
    margin: 0;
}

.pagination {
    display: flex;
    justify-content: flex-start;
}

.pagination-item {
    text-align: center;
    line-height: 2em;
    width: 2em;
    height: 2em;
    border-left: 1px solid cornflowerblue;
    border-top: 1px solid cornflowerblue;
    border-bottom: 1px solid cornflowerblue;
    cursor: pointer;
}

.pagination-item:last-child {
    border-right: 1px solid cornflowerblue;
}

.active {
    color: white;
    background: cornflowerblue;
}

.occupancy {
    height: 50em;
}
@media (max-width: 990px) {
    .occupancy {
        height: 20em;
    }
}

@media (max-width: 420px) {
    .occupancy {
        display: none;
    }
}