/*
body {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size: 12px;
    color: #222222;
}

.listItem .titleContainer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    flex-shrink: 0;
}

.listItem .titleContainer .fromIcon {
    height: 20px;
    width: auto;
    background-color: #444;
    bottom: 0;
    font-size: smaller;
    max-height: 20px;
    padding: 0px 5px 0px 5px;
    line-height: 20px;
    color: #FAFAFA;
    flex-shrink: 0;
}

.listItem a {
    text-decoration: none;
    color: #222222;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
}

.listItem {
    padding: 6px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    background-color: #bb1919;
    margin: 5px;
}

.listItemImage {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    background-color: #bb1919;
    object-fit: cover;
}

.listItemText {
    padding: 5px;
    box-sizing: border-box;
    flex-grow: 1;
    margin-left: 7px;
    background-color: #FAFAFA;

    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listItemBody {
    padding: 0;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
}

.listItemDate {
    padding: 0;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    align-self: end;
    flex-shrink: 0;
}

#newsFiltersContainer {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
}

.newsFilters {
    width: 200px;
    height: 30px;
    border: 1px solid #DDD;
    border-radius: 50px;
    background-color: #F8F8F8;
    padding: 7px 10px;
}
*/