/* OVERALL */
:root {
    --section-background-color: lightgrey;
}

.logoImg {
    height: 30px;
}

.mainTitle {
    font-size: 30px;
}

/* HOMEPAGE */

.inboxGrid {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-column-gap: 2%;
}

.oneSection {
    display: grid;
    grid-template-rows: max-content;
}

.emailList {
    padding: 0 10px;
}

.oneEmail {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-areas: 
        "sender company"
        "subject subject"
        "time assigned";
    margin-bottom: 5px;
    border-radius: 0.4rem;
    padding: 5px;
    background-color: var(--section-background-color);
}

.oneEmail:last-child {
    margin-bottom: 0;
}

.sender {
    grid-area: sender;
}

.company {
    grid-area: company;
}

.subject {
    grid-area: subject;
}

.time {
    grid-area: time;
}

.assigned {
    grid-area: assigned;
}

.emailContent {
    display: flex;
    flex-direction: column;
    border-radius: 0.4rem;
    padding: 5px;
}

.emailContent > div {
    flex-grow: 1;
}