.dropdown {
    position: absolute;
    top: 0;
    right: 0;
}

/* Style the dropdown button */
.dropbtn {
    /*000000 to 0b0b0b
    background-color: #333;*/
    background: linear-gradient(#000000, #0b0b0b);
    color: white;
    padding: 8px;
    margin-right: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 140px;
    text-align: right;
    font-family: "JetBrains Mono", "Roboto", "Cascadia Mono", monospace, monospace;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    width: 140px;
    background-color: #333;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    color: white;
    text-align: right;
}

/* Links inside dropdown content */
.dropdown-content a {
    color: white;
    padding: 8px;
    text-decoration: none;
    display: block;
}

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

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

/* Change background color of dropdown button on hover */
.dropdown:hover .dropbtn {
    background-color: #111;
}
