.navigation {
    height: 100%;
    width: 80px;
    position: fixed!important;
    z-index: 2;
    overflow: visible!important;
}

.navigation-radius {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px 32px 32px 0px;
    border-radius: 0px 32px 32px 0px;
}

.navigation-item {
    height: 50px!important;
    width: 80px!important;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute; /* Changed from 'right' */
    left: 100%; /* Moves dropdown to the right of the button */
    top: 0; /* Aligns with the top of the button */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 20px 16px;
    z-index: 300;
}

.dropdown:hover .dropdown-content {
    display: block;
}