/* Container must be relative so the submenu aligns to it */
.dropdown-container {
    position: relative;
    display: inline-block;
}

/* Hide the submenu by default */
.submenu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
}

/* Style the links inside the submenu */
.submenu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

/* Change background of submenu links on hover */
.submenu a:hover {
    background-color: #f1f1f1;
    color: #000;
}

/* THE TRIGGER: Show the menu when hovering the container */
.dropdown-container:hover .submenu {
    display: block;
}
