body {
    display: grid;
    grid-template-columns: minmax(150px, 250px) 1fr;
    grid-template-rows: 130px 1fr;
    background-color: #059669;
}

#sideBar {
    grid-row: 1 / -1;
    grid-column: 1 / 2;
    display: grid;
    grid-template-rows: repeat(5, 80px);
    border-right: 5px solid black;

}

#home,
#history,
#organisation,
#tasks,
#profiles {
    display: grid;
    grid-template-columns: 1fr 3fr;
    font-size: 2rem;
    align-items: center;
    background-color: #059669;
    border: none;
    text-align: left;
}

#header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 30px 100px;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-color: #10b981;
    padding-left: 5px;
}

#searchBar {
    display: grid;
    grid-template-columns: minmax(50px, 100px) 1fr;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    
}

#searchButton {
    background-color: #10b981;
    border: 3px solid black;
    border-right: none;
}

#searchEntry {
    width: 95%;
    background-color: #10b981;
    border: 3px solid black;
    color: black;
}

#action {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

#new,
#upload,
#share {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 30px;
    align-items: center;
    background-color: #10b981;
    border: none;
    text-align: left;
}

#greeting {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns:  80px 1fr;
    align-items: center;
}

#adminIcon {
    grid-column: 1 / 2;
}

#rubbish {
    grid-column: 2 / 3;
    font-size: 1.25rem;
    display: grid;
    grid-template-rows: 50px 50px;
    margin-left: 10px;
}

#hello {
    grid-row: 1 / 2;
}

#wellcome {
    grid-row: 2 / 3;
}

#permission {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-rows: 30% 70%;
    text-align: center;
}

#permissionLevel {
    font-size: 1.25rem;
    font-weight: bold;
}
#permissionDetail {
    overflow: hidden;
}

#main {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: 1fr minmax(150px, 250px);
}

#content {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 230px);
    justify-content: center;
}

#contentTitle {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    border: 1px solid black;
    background-color: black;
    color: white;
}

.contentItem {
    border: 3px solid black;
    border-left: 15px solid black;
    margin: 5px;
    padding: 5px;
}
.contentItemTitle {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 3px;
}

#status {
    display: grid;
    grid-template-rows: auto auto;
}

.statusTitle {
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid black;
    background-color: black;
    color: white;
}

#announcement,
#trending {
    display: grid;
    text-align: center;
    align-items: start;
}
#announcement > *,
#trending > * {
    border-left: 5px solid black;
    border-bottom: 1px dashed black;
    border-top: 1px dashed black;
}

.announcementTitle,
.trendingTitle {
    font-weight: bold;
}