 

.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    border-radius: 0.5em; 

}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #4CAF50;
    color: white;
}

.vertical-menu {
    width: 200px;
    overflow-y: auto;
} 

.vertical-menu a {
    background-color: #eee; /* Grey background color */
    color: black; /* Black text color */
    display: block; /* Make the links appear below each other */
    padding: 12px; /* Add some padding */
    text-decoration: none; /* Remove underline from links */
     border-radius: 0.5em; 

}

.vertical-menu a:hover {
    background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
    background-color: #4CAF50; /* Add a green color to the "active/current" link */
    color: white;
} 
.vertical-menu-2 a {
    background-color: #eee; /* Grey background color */
    color: grey; /* Black text color */
    display: block; /* Make the links appear below each other */
    left:200px;
    text-decoration: none; /* Remove underline from links */
    padding:12px;
    width: 200px;
   
    position: relative;
    top:-100px;
   border-radius: 0.5em; 

   
}

.vertical-menu-2 a:hover {
    background-color: #ccc; /* Dark grey background on mouse-over */
}

.vertical-menu-2 a.active {
    background-color: #4CAF50; /* Add a green color to the "active/current" link */
    color: white;
} 