#root_grid {
    display: grid;
    grid-template-rows: 9% 91%;
}

#content_grid {
    display: grid;
    grid-template-columns: 20% 80%;
}

#form_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90vh
}

.form_center {
    display: flex;
    background-color: var(--highlight);
    border-radius: 16px;
    padding: 1em
}

.chat_room, #chat_rooms {
    grid-column: 2 / 3;
    min-width: 0px;
}

#sidebar {
    grid-column: 1 / 2;
    max-height: 90vh;
}

.navbar {
    display: flex;
    flex-direction: row;
    grid-row: 1 / 2;
    margin: 0;
    padding: 1em;
    list-style: none;
    gap: 1em;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    #sidebar {
        display: none;
    }

    .chat_room, #chat_rooms {
        grid-column: 1 / 3;
        /* min-width: 0px; */
    }
}
