```css
/* dropDownstyles.css */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
table {
 vertical-align: top;
 padding: 5px;
 font-size: 14px;
}
h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px; 
}
    

main{
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;	
}
.head1{
    font-size: 14pt;  
    color: blue;
    vertical-align: top;
    text-align: left;
}



/* Navigation Bar */
.navbar {
    background-color: mediumseagreen; /* Dark background */
    overflow: hidden; /* Clear floats */
}

/* Dropdown Container */
.dropdown {
    float: left; /* Align horizontally */
    overflow: hidden; /* Clear floats */
}

/* Dropdown Button */
.dropdown .dropbtn {
    font-size: 16px; /* Font size was 16px */
    border: 2; /* Remove default border was none */
    outline: none; /* Remove outline */
    color: white; /* White text */
    padding: 5px 5px; /* Padding was v h 14px 20px  */
    background-color: inherit; /* Inherit background color */
    font-family: inherit; /* Inherit font family */
    margin: 0; /* Remove margin */
}

/* Add a background color to dropdown button on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ddd; /* Light grey background */
    color: black; /* Black text */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none; /* Hide by default */
    position: absolute; /* Position absolutely */
    background-color: #f9f9f9; /* Light background */
    min-width: 160px; /* Minimum width was 160px */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Box shadow */
    z-index: 1; /* Ensure it is on top */
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none; /* Remove float */
    color: green; /* Black text was black */
    padding: 5px 5px; /* Padding was 12px 16px  2342    */
    text-decoration: none; /* Remove underline */
    display: block; /* Display as block */
    text-align: left; /* Align text to the left */
}

/* Add a background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd; /* Light grey background */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block; /* Display block */
}