.app-nav {
    height: 100vh;
    width: 280px;
    background-color: #101A24;
    bottom: 0;
    padding: 1rem;
    position: relative;
    z-index: 9999;
    margin-right: 2rem;
}

.main-content-xyz {
    overflow: scroll;
    overflow-x: hidden;
    width: 100%;
}

.xyz-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.app-nav-logo {
    padding: .6rem 1rem;
    padding-bottom: 0;
}

.app-nav-class-group {
    width: 100%;
}

.app-nav-class {
    color: rgba(255, 255, 255, 0.700);
    text-transform: uppercase;
    font-size: 11px;
    padding-left: .6rem;
    margin-bottom: 7px;
}

.app-nav-item-name {
    color: white;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-nav-item-dropdown-link {
    color: white !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-nav-item-dropdown-icon {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background-color: white;
}

.app-nav-item-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-nav-item-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
}

.app-nav-item {
    cursor: pointer;
    padding: .6rem 1rem;
    border-radius: 5px;
    transition: background-color .4s ease;
}

.app-nav-item:hover {
    background-color: #454b5078;
}

.app-nav-item.active {
    background-color: #454b5078;
    font-weight: bold;
}

.app-nav-class-group-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.app-nav-class-group-items a {
    width: 100%;
}

.app-nav-sections {
    width: 100%;
    margin-top: 2rem;
}

.app-nav-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.app-nav-sections {
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-nav-account {
    cursor: pointer;
    border-radius: 5px;
    transition: background-color .4s ease;
    padding: .6rem 1rem;
    width: 100%;
}

.app-nav-account:hover {
    background-color: #454b5078;
}

.app-nav-side.active {
    background-color: #454b5078;
}

.app-nav-account-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    color: white;
    font-size: 15px;
}

.app-nav-account-main {
    font-weight: bold;
}

.app-nav-account-sub {
    font-size: 13px;
    color: #7d8489;
}

.app-nav-account-profile-img-wrapper {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 4px;
}

.app-nav-account-text {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.app-nav-sub-sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 1rem;
}

.app-nav-items a {
    text-decoration: none;
    color: inherit;
}

.app-nav-side {
    position: relative;
}

.app-nav-side-content {
    position: absolute;
    background: rgba(16, 26, 36, 0.4);
    padding: .2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: calc(-100%);
    left: 0;
    border-radius: 5px;
    min-width: 250px;
    transform: scale(0.9);
    transition: transform .1s ease;
    opacity: 0;
    pointer-events: none;
    top: calc(-100% - 30px);
}

.app-nav-side.active .app-nav-side-content {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.app-nav-side-content .app-nav-item-name {
    font-size: 14px;
}

.app-nav-side-content a {
    text-decoration: none;
    color: inherit;
}

.app-nav .tooltip {
    display: none !important;
}

.app-nav-icon-wrapper {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-page-link {
    color: white !important;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 1rem;
    padding: 10px 0px;
    padding-left: 1rem;
    width: auto !important;
    border-left: 1.5px solid white;
    border-bottom: 1.5px solid white;
    border-radius: 5px;
    display: none;
}

.sub-page-link.active {
    display: inline-flex;
}