.dropdown-container {
    position: relative;
    display: inline-block;
}

.trigger {
    width: 300px; /* Adjust as needed */
    height: 3px; /* Maximal 3 pixels high */
    background-color: black; /* Trigger line color */
    cursor: pointer;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: -5px; /* Position the menu above the trigger */
    left: 0;
    width: 150px; /* Adjust as needed */
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.menu-items {
    list-style-type: none;
}

.menu-items li {
    padding: 10px;
}

.menu-items a {
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown-container:hover .menu-dropdown {
    display: block;
}