@charset "utf-8";
/* CSS Document */

/* Dropdown Button */
.dropbtn {
    background-color: #660066;
    color: white;
    padding:0px;
    font-size: 12px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #660066;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #660066;
    min-width: 170px;
   
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 0px 0px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #660066}
.dropdown-content a:hover {color: #CCCCCC}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}