.drop_btn { /* This is for styling the dropdown button */
    background-color: #C0C0C0;
    color: #000000;
    padding: 2px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.drop { 
    display: inline-block;
    position: relative;
}
   
.drop-content { /* For styling the content itself */
    background-color: #C0C0C0;
    min-width: 350px;
    display: none;
    position: absolute;
}
  
.drop-content a { /* For styling the links inside the content */
    color: 0000FF;
    padding: 3px;
    font-size: 14px;
    text-decoration: none;
    display: block;
}
.drop-content a:hover { /* Change the color of the dropdown links when they are hovered on */    
    background-color: #FFFFFF;
}
.drop:hover .drop-content { /* Shows the dropdown menu list when hovered on */
    display: block;
}
.drop:hover .drop_btn { /* Changes the dropdown button color once it is hovered on as well */
    background-color: #C0C0C0;
}