body {
    font-family: Arial, sans-serif;
    padding: 50px;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
    background-color: rgb(136, 34, 34);
}

/* Button */
.dropbtn {
    /* background-color: #3498db; */
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown menu (hidden by default) */
.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease-in;
    position: absolute;
    top: 100%;
    right: 0%;
    border-radius: 0.25rem;
    background-color: #b55555;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside dropdown */
.dropdown-content a {
    color: rgb(0, 0, 0);
    transition: color 0.25s ease-in-out;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    border-radius: 0.25rem;
    text-align: center;
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: #aa3535;
    color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    color: rgb(255, 255, 255);
    display: block;
}

/* Button hover */
.dropdown:hover .dropbtn {
    background-color: rgb(184, 44, 44);
    border-radius: 0.50rem;
}
