﻿.navMenu {
    width: 100%;
    height: 3rem;
    background-color: var(--bs-primary);
    display: flex;
    justify-content: space-between;
}
.menuBox {
    width: 250px;
    height: calc(100% - 3rem);
    position: absolute;
    z-index:100;
    background-color: var(--bs-lightgray);
}
/*.pageNavigation:hover {
    transition: width 0.2s ease-in-out;
    -webkit-transition: width 0.2s ease-in-out;
    width: 150px;
}
.pageNavigation:hover ul{
    display:block;
}*/
.navigationContainer {
    width: fit-content;
    display: flex;
    height: 3rem;
    align-content: center;
}
.toolContainer {
    width: fit-content;
    display: flex;
    height: 3rem;
    align-content: center;
}

.pageNavigation::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    background-color: var(--bs-gray-300);
}

.pageNavigation::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.pageNavigation::-webkit-scrollbar-thumb {
    background-color: var(--bs-secondary);
    border-radius: 5px;
}

.pageNavigationIconWrapper {
    display: flex;
    flex-direction: row;
    justify-content: right;
    position: relative;
    padding: 0.25rem;
    border-bottom-style: solid;
    border-color: var(--bs-secondary);
    border-width: 2px;
    margin-bottom: 0.5rem;
}
    .pageNavigationIconWrapper i {
        rotate: 180deg;
        cursor: pointer;
    }

.pageNavigation {
    position: relative;
    width: 200px;
    background-color: var(--bs-gray-300);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y:auto;
    overflow-x:hidden;
    padding:0.5rem;
}
    .pageNavigation ul {
        list-style-type: none;
        padding: 0px;
    }
    .pageNavigation li {
        text-decoration: none;
        color: black;
        margin-bottom: 1rem;
    }

    .pageNavigation a {
        text-decoration: none;
        color: black;
        border-radius: 0.25rem;
        padding: 0.5rem;
        width: calc(200px - 1rem);
        display: block;

        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        overflow: hidden;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-property: color, background-color;
        transition-property: color, background-color;
    }
        .pageNavigation a:hover {
            -webkit-animation-name: hvr-back-pulse;
            animation-name: hvr-back-pulse;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            background-color: var(--bs-secondary);
            color: white;
        }

.sideNavigation {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bs-secondary);
}
    .sideNavigation a {
        color: white;
    }
    .sideNavigation ul {
        list-style-type: none;
        /*padding: 0px;*/
    }


.navBox {
    padding: 0.25rem;
    border-bottom: none;
    border-width: 1px;
    margin-right: 0.25rem;
    margin-left: 0.25rem;
    border-color: var(--bs-primary);
}
.menuAnimation a {
    position: relative;
    
    text-decoration: none;
}

    .menuAnimation a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        border-radius: 4px;
        background-color: var(--bs-primary);
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }

    .menuAnimation a:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }