:root {
    --font-color: #bbb
}

.bg-dark2 {
    color: #ffffff;
    background-color: #202030;
}

.darkmode-font {
    color: var(--font-color);
}


.sidebar-box {
    position: fixed;

    height: 100vh;
    width: 280px;

    background-color: #232335;
    border-right: solid #000000 1px;
}

.sidebar-item {
    margin: 20px 20px 0px 20px;

    font-size: 1.4em;
}

.sidebar-box .logout {
    position: absolute;
    bottom: 0vh;

    margin: 20px 20px 20px 20px;

    font-size: 2.0em;
}

.content-box {
    position: absolute;
    left: 280px;

    height: 100vh;
    width: calc(100vw - 280px);

    background-color: #202030;
}


.notification-box {
    position: fixed;
    top: 10px;
    left: 50%;

    transform: translateX(-50%);
    
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.notification {
    display: flex;
    justify-content: center;
    justify-self: center;

    color: white;
    background-color: #232335;

    margin-bottom: 10px;
    padding: 10px;
    border: solid black 1px;
    border-radius: 10px;
}

.separator {
    border-bottom: solid #555555 1px;

    margin: 15px 0 5px 0;
}
