body {
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
    margin: 0px;
    color: #ee6055;
}

.container {
    display: grid;
    grid-template-rows: auto auto auto auto auto 2rem;
    grid-template-columns: 1fr 2fr 2fr 1.6fr;
    min-height: 100vh;
}

.logo {
    /* display: flex; */
    align-items: center;
    margin-top: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-size: 28px;
}

.logo a span {
    padding-top: 8px;
    padding-left: 12px;
}

.logo img {
    height: 52px;
    padding-left: 1.5rem;
}

.sidebar {
    display: grid;
    grid-template-rows: 1fr 6fr;
    grid-row: 1 / -1;
    background-color: #fec5bb;
    color: black;
}

.menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 2.5rem;
}

.menu ul li {
    display: flex;
    align-items: center;
}

.menu ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.menu ul li span {
    display: inline-block;
}

.menu img {
    height: 24px;
    padding-right: 8px;
}

.menu-part-2 {
    margin-top: 100px;
    justify-content: center;
}

.navbar {
    display: flex;
    align-items: center;
    grid-column: 2 / -1;
    grid-row: 1;
    gap: 2rem;
    padding: 1rem 2rem;
    /* background-color: #faedcb; */
}

.searchbar {
    display: flex;
    align-items: center;
    flex: 1;
    background-color: #eee;
    border-radius: 24px;
    padding: 8px 16px;
    gap: 8px;
}

.searchbar input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    padding: 8px;
    font-size: 16px;
}

.search-icon img {
    display: flex;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(53%) saturate(3571%) hue-rotate(340deg) brightness(95%) contrast(88%);
}

.notif-icon {
    display: flex;
    align-items: center;
}

.notif-icon img {
    height: 32px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(53%) saturate(3571%) hue-rotate(340deg) brightness(95%) contrast(88%);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-profile-picture img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
}
.action-bar {
    grid-column: 2 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 6fr 2fr;
    /* background-color: #faedcb; */
}

.action-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
}

.action-buttons button {
    border-radius: 16px;
    padding: 8px 32px 8px 32px;
    border-style:hidden;
    background-color: #fec5bb;
    color: black;
}

.project-header {
    padding-left: 2rem;
}

.project-menu {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-column: 2 / span 2;
    grid-row: 4 / span 2;
    gap: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.project-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 8px solid #f39c12;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.project-details {
    margin: 0;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.project-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: auto;
}

.project-actions button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 100px;
    transition: background-color 0.2s;
    display: flex;
}

.project-actions button:hover {
    background-color: #f5f5f5;
}

.project-actions img {
    height: 20px;
    width: 20px;
}

.announcements-header {
    grid-row: 3;
    grid-column: 4;
    padding-left: 2rem;
    padding-right: 2rem;
}

.announcements-menu {
    grid-row: 4;
    grid-column: 4;
    padding-left: 2rem;
    padding-right: 2rem;
}

.announcements-card {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    padding: 24px;
    background-color: #ffd7ba;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.news {
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
}

.news:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-header {
    font-weight: 900;
}

.news-details {
    margin-bottom: 0px;
    color: #666;
}

.trending-menu {
    grid-row: 5;
    grid-column: 4;
    display: grid;
    grid-template-rows: auto 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
}

.trending-header {
    margin: 0;
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.trending-card {
    display: flex;
    flex-direction: column;
    /* grid-template-rows: repeat(4, 0.2fr); */
    background-color: #ffd7ba;
    border-radius: 16px;
    padding: 24px;
    row-gap: 32px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.trending-user {
    display: grid;
    grid-template-rows: repeat(2, 0.4fr);
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

.trending-user h3 {
    margin: 0;
    font-size: 16px;
}

.user-pfp {
    grid-row: 1 / -1;
    max-width: 48px;
    max-height: 48px;
}

.user-handle {
    grid-column: 2;
}

.user-details {
    grid-row: 2;
    grid-column: 2;
    font-size: 14px;
    color: #666;
}

.user-pfp img {
    height: 48px;
    width: 48px;
    border-radius: 100px;
}

.greeting {
    display: flex;
}

.action-bar {
    padding-left: 2rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.user-profile-picture-big img {
    height: 72px;
    border-radius: 100px;
    grid-row: 1 / -1;
}

.greeting-texts {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    padding-left: 12px;
}

.greeting-text-2 {
    margin-top: 2px;
}

.foreground, .project-card {
    background-color: #ffd7ba;
}

body {
    background-color: #f5ebe0;
}
