/* Light mode styles */
/* Style the dropdown button */
.dropbtn {
    background-color: #f1f1f1;
    color: #000;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dark mode styles */

body.dark-theme .dropbtn {
    background-color: #555;
    color: #fff;
}

body.dark-theme .dropdown-content {
    background-color: #444;
}

body.dark-theme .dropdown-content a {
    color: #fff;
}

body.dark-theme .dropdown-content a:hover {
    background-color: #555;
}