* {
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-columns: 1fr 7fr;
    grid-template-rows: 1fr 5fr;
    height: auto;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.header,
.dashboard,
.body {
    display: grid;
}

.body {
    background-color: lightgray;
}

.header {
    grid-column: 2/3;
    grid-row: 1/2;
    padding: 25px;
}

.dashboard {
    grid-column: 1/2;
    grid-row: 1/3;
    justify-content: start;
    background-color: green;
    color: white;
}

ul {
    list-style-type: none;
}

.dashboard-nav {
    padding-top: 20px;
    margin-left: 8px;
}

.dash-list {
    display: grid;
    row-gap: 18px;
}

.material-icons {
    margin-right: 10px;
    vertical-align: middle;
}

.header {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.header-search {
    grid-column: 1/2;
}


/*
.header-profile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
*/

.header-profile {
    display: grid;
    grid-template-columns: 30px 30px 150px;
    gap: 15px;
}

#rick1 {
    max-width: 30px;
}

#rick2 {
    max-width: 50px;
}

button {
    width: 80px;
    margin-right: 15px;
    border-radius: 20px;
    background-color: green;
    color: white;
    height: 30px;
    box-shadow: none;
    border: transparent;
}

#search {
    border-radius: 20px;
    width: auto;
    border: 1px solid black;
}

.header-greeting {
    display: grid;
    grid-template-columns: 50px 200px;
    gap: 20px;
}

.body {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr;
}

.projects,
.side-body {
    display: grid;
    margin: 10px;
}

.projects {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.cards {
    margin: 10px;
    border-radius: 15px;
    border-left: 5px solid darkorange;
    padding: 10px;
    background-color: white;
}

.side-body {
    padding: 10px;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
}

.card-icons {
    float: right;
}

.announcements {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 10px 15px;
    gap: 18px;
    background-color: white;
    border-radius: 15px;
}

.notif-1,
.notif-2 {
    border-bottom: 1px solid grey;
    padding-bottom: 15px;
}

.trending {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    column-gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 15px;
}


/*
.greeting {
    display: grid;
    grid-template-columns: 200px;
}   grid-template-columns: 200px;
}