nav {
    width: 50px;
    height: calc(100% - 10px);
    border-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: 0.5s linear;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    position: fixed;
    top: 5px;
    left: 5px;
}

    nav:hover {
        width: 210px;
    }

    nav .logo a {
        padding: 0px;
    }

    nav .logo h1 {
        width: 100% !important;
        height: 50px !important;
        color: #2C7BE5 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    nav .logo h1 {
        margin: 0px;
        font-size: 2.4em;
        user-select: none;
    }

    nav .nav-content {
        height: calc(100% - 100px);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 5px;
        gap: 10px;
        box-sizing: border-box;
    }

    nav a {
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        color: #5E6E82;
        font-weight: 600;
    }

        nav a i {
            font-size: 1.6em;
        }

        nav a span {
            margin-left: 22px;
            font-size: 1.2em;
        }

        nav a:hover {
            color: black;
        }

    nav .logout {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
