body {
    background-color: #1e1e24;
}

#leftNav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 15rem;
    height: 100%;
    background-color: #23232b;
    border-right: 1px solid #2d2d38;
    z-index: 10;
}

#leftNavTop{
    display: block;
    position: relative;
    height: 60px;
    background-color: #23232b;
}

#leftNavLogoLink{
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    align-items: center;
}

#leftNavLogo{
    display: block;
    position: relative;
    height: 2rem;
    width: auto;
}

#leftNavTitleImg{
    display: block;
    position: relative;
    height: 1.5rem;
    width: auto;
    margin-left: 0.5rem;
}

.leftNavItem{
    display: block;
    position: relative;
    width: calc(100% - 1rem);
    height: 3.5rem;
    padding-left: 1rem;
    background-color: #23232b;
    transition: background-color 0.2s;
    border-bottom: 1px solid #2a2a33;
}

.leftNavItem:hover{
    background-color: #2a2a33;
}

.leftNavItemSelected{
    background-color: #2a2a33;
}

.leftNavItemTitle{
    display: block;
    position: relative;
    color: #ffffff;
    font-size: 1.1rem;
    left: 0.1rem;
    top: 0.4rem;
}

.leftNavItemSelected .leftNavItemTitle {
    font-weight: bold;
}

.leftNavItemSummary{
    display: block;
    position: relative;
    color: #b0b0b8;
    font-size: 0.8rem;
    top: 0.3rem;
}

#leftNavUserBox{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 1rem);
    height: 3.5rem;
    padding: 0.3rem 0.5rem;
    background-color: #23232b;
    border-top: 2px solid #2a2a33;
}

#userBoxProfilePic{
    display: inline-block;
    position: relative;
    height: 2.2rem;
    width: 2.2rem;
    margin: 0.2rem;
    margin-right: 0.3rem;
}

#userBoxRight{
    display: inline-block;
    position: relative;
    width: calc(100% - 2.2rem - 0.5rem);
    height: 100%;
    margin: 0.2rem;
    margin-left: 0;
    margin-right: 0;
}

#userBoxNamesBox{
    display: block;
    position: relative;
    margin-top: 0.1rem;
    margin-left: 0.2rem;
    height: 1.2rem;
    margin-bottom: 0.3rem;
}

#userBoxDisplayName{
    display: inline-block;
    position: relative;
    color: #f3e7ff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

#userBoxUsername{
    display: inline-block;
    position: relative;
    color: #b0b0b8;
    font-size: 0.9rem;
    margin-left: 0.1rem;
}

#userBoxLinksBox {
    text-align: right;
    padding-right: 0.1rem;
    height: 0.9rem;
}

.userBoxLink{
    display: inline-block;
    position: relative;
    color: #d1a0fe;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.userBoxLink:hover{
    color: #f3e7ff;
}

.userBoxLinkLogout:hover{
    color: #ff0000;
}

#topNav{
    display: inline-block;
    position: fixed;
    top: 0;
    left: 15rem;
    width: calc(100% - 15rem - 1px);
    height: 60px;
    background-color: #23232b;
    border-bottom: 1px solid #2d2d38;
    z-index: 9;
}

#topNavLinks{
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.5rem;
    align-items: center;
}

.topNavText{
    display: block;
    position: relative;
    color: #f3e7ff;
    font-size: 1rem;
    margin-right: 0.7rem;
}

a.topNavText{
    transition: color 0.2s;
}

a.topNavText:hover{
    color: #d1a0fe;
}

.topNavTextBold{
    font-weight: bold;
}

.topNavTextItalic{
    font-style: italic;
}

.mainContent {
    display: block;
    position: absolute;
    top: 60px;
    left: calc(15rem + 1px);
    width: calc(100% - 15rem - 1px - 1.2rem);
    height: auto;
    background-color: #1e1e24;
    overflow-y: auto;
    padding-top: 1.2rem;
    padding-left: 1.2rem;
}

.optionBox {
    display: block;
    position: relative;
    margin-right: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background-color: #23232b;
    border-radius: 0.5rem;
    overflow: hidden;
}

.userButton {
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 1rem;
    margin: 0;
    height: 1.2rem;
    border-radius: 0.5rem;
    background-color: #23232b;
    transition: background-color 0.3s;
    overflow: hidden;
    white-space: nowrap;
    color: #d1a0fe;
    border: 1px solid #d1a0fe;
}

.userButton:hover {
    background-color: #3a3a44;
}

.userButtonDisabled {
    background-color: #2a2a33 !important;
    color: #808080 !important;
    border: 1px solid #3a3a44 !important;
    cursor: not-allowed;
}


.userButtonDanger {
    color: #ff0000;
    border: 1px solid #ff0000;
}

.userButtonHighlight {
    background-color: #a458eb;
    color: #f3e7ff;
    border: 1px solid #a458eb;
}

.userButtonHighlight:hover {
    background-color: #d1a0fe;
    color: #ffffff;
    border: 1px solid #d1a0fe;
}

.userInput {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 1rem;
    margin: 0;
    height: 1.2rem;
    border-radius: 0.3rem;
    background-color: #2a2a33;
    color: #a458eb;
    border: 2px solid #d1a0fe;
}

.coverContent {
    display: flex;
    position: absolute;
    top: 60px;
    left: calc(15rem + 1px);
    width: calc(100% - 15rem - 1px);
    height: calc(100% - 60px);
    background-color: rgba(70, 60, 80, 0.2);
    backdrop-filter: blur(2px);
    z-index: 10;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coverBox {
    display: block;
    position: relative;
    background-color: #23232b;
    border-radius: 0.5rem;
    padding: 1rem;
    padding-top: 0;
    text-align: left;
    overflow: hidden;
    border: 1px solid #2a2a33;
}

.coverBoxTitleDiv {
    display: flex;
    position: relative;
    left: -1rem;
    align-items: center;
    margin-bottom: 0.5rem;
    width: calc(100% + 2rem);
    height: 2.8rem;
}

.coverBoxTitle {
    display: block;
    position: relative;
    font-size: 1rem;
    color: #f3e7ff;
    font-weight: bold;
    margin-left: 1.6rem;
}

.coverBoxCloseButton {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    width: 1rem;
    height: 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
    color: #f3e7ff;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coverBoxCloseButton:hover {
    color: #ff0000;
}

.skinViewCanvasSpan {
    display: block;
    overflow: hidden;
}

.skinViewCanvas {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}