.journal__table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
	margin-top:5rem;
}

.journal__table td,
.journal__table th {
    padding: 1.2rem 1.6rem .8rem 1.2rem;
    vertical-align: top;
    min-width: 15.4rem;
}

.journal__table th {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.55rem;
}

.journal__table td {
    font-size: 1.6rem;
    line-height: 2.55rem;
}


.journal__table tr {
    border-bottom: .2rem solid rgba(0, 0, 0, 0.4);
    transition: .3s box-shadow;
}

.journal__table tr:hover {
    box-shadow: inset 0 0 1rem .1rem #27A193;
}

.journal__table tbody tr {
    cursor: pointer;
}

.journal__table tbody tr.unread {
    background-color: #27A19333;
}

.journal__table tbody tr span {
    display: inline-block;
    padding: .8rem 1.3rem;
}

.journal__table tbody tr span.yellow {
    background-color: #FFD15A;
}

.journal__table tbody tr span.red {
    background-color: #FF5454;
    color: #fff;
}