

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    border-radius: 5px;
}

/* --- Dropdown Menu Container --- */
.dropdown {
    position: relative; 
    display: inline-block; 
    margin: 20px;
}

/* --- The Dropdown Button --- */
.dropbtn {
    background-color: #009605;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* --- The Container for the Links (Hidden by Default) --- */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #288f00;
    min-width: 200px;
    box-shadow: 0px 6px 14px 0px rgb(255, 255, 255);
    z-index: 1;
    border-radius: 5px;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* --- Styling for the Links Inside the Dropdown --- */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block; /* Makes the entire area clickable, not just the text */
    
}

/* --- Change color of dropdown links on hover --- */
.dropdown-content a:hover {
    background-color: #015000;
    transition: background-color 0.3s;
}

/* --- THE MAGIC: Show the dropdown menu when hovering over the container --- */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
