.navbar
{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 50px;
    height: 100dvh;
    background-color: var(--secondaryColour);
    overflow: hidden;
    transition-duration: 0.1s;
    z-index: 100;
}

.navbar:hover
{
    width: 200px;
}

.mainNavbar
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    height: calc(100% - 80px);
    overflow-x: hidden;
    overflow-y: auto;
}

.bottomNavbar
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    height: 45px;
}

.navbarMainHeader
{
    display: flex;
    height: 50px;
    width: 100%;
    color: var(--secondaryTextColour);
}

.navbarClient
{
    width: 150px;
    height: 50px;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 50px;
}

img.navbarFavicon
{
    width: 40px;
    height: 40px;
    margin: 5px;
}

.navbarHeader
{
    display: flex;
    height: 30px;
    width: 180px;
    margin: 0px 5px;
    padding: 5px;
    border-radius: 5px;
    color: var(--secondaryTextColour);
}

.navbarHeader:hover
{
    background-color: var(--highlightColour);
    cursor: pointer;
}

a.navbarHeader:hover
{
    cursor: pointer;
    color: var(--secondaryTextColour);
}

.navbarHeader:hover .navbarIcon
{
    color: var(--tertiaryColour);
}

.navbarIcon
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    user-select: none;
}

.navbarDropdownIcon
{
    height: 40px;
    width: 40px;
    line-height: 40px!important;
    text-align: center;
    font-size: 16px;
    color: var(--tertiaryColour);
}

.navbarTitle
{
    width: 140px;
    height: 30px;
    margin-left: 10px;
    font-size: 16px;
    line-height: 30px;
    user-select: none;
}

.navbarDropdown
{
    display: flex;
    flex-direction: column;
    height: fit-content;
    max-height: 40px;
    width: 100%;
    overflow: hidden;
    transition-duration: 0.2s;
}

.navbar:hover .navbarDropdown.openDropdown
{
    max-height: 250px;
}

.navbarDropdown.openDropdown .navbarHeader
{
    background-color: var(--highlightColour);
}

.navbarItems
{
    width: calc(100% - 35px);
    height: fit-content;
    margin: 0px 5px;
    display: flex;
    flex-direction: column;
}

.navbarItem
{
    width: calc(100% - 15px);
    height: 20px;
    padding: 4px 5px 4px 8px;
    font-size: 15px;
    line-height: 20px;
    border-radius: 5px;
    color: var(--secondaryTextColour);
}

.navbarItem:hover
{
    background-color: var(--highlightColour);
    color: var(--secondaryTextColour);
}

.navbarLine
{
    width: 25px;
    height: 100%;

    border-right: 1px solid var(--secondaryTextColour);
}