.page {
    position: relative;
    display: flex;
    min-height: 100vh;
    background-color:  #202123;
}

.sidebar {
    width: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.top-bar {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instance-selector-container {
    margin-left: auto;
}

.content-area {
    flex: 1;
    overflow: auto;
}

/* Nav Menu */

.logo {
    padding: 16px 24px;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.main-layout-container {
    min-height: 100vh;
    width: 100%;
}
