.main-container {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-template-rows: 48px 1fr;

    height: 100vh;
    width: 100vw;
}

.header {
    grid-column: 1;
    grid-row: 1;

    background-color: #0e0f10;

    display: inline-grid;
    grid-template-columns: auto 1fr auto auto;
    column-gap: 8px;
}

.header-btn {
    text-align: center;
    
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;

    width: 100%;
    height: 100%;
}

.header-btn:hover {
    background-color: #191919;
    cursor: pointer;
}

.projects-grid {
    grid-column: 1;
    grid-row: 2;

    width: 100vw;

    overflow: hidden;

    display: inline-grid;
    grid-template-columns: 2fr auto 3fr;
    grid-template-rows: 1fr;
}

.projects-list {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #4B5563 #262626;
}

.project-preview {
    flex-shrink: 0;

    align-self: center;
    background: #1e2021;

    width: 96%;
    height: 100px !important;
    min-height: min-content;

    margin-top: 2%;
    border-radius: 5px;
}