.dropdown .menu-wrapper {
    position: absolute;
    display: none;
}

.dropdown:hover .menu-wrapper {
    display: block;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: white;
    box-shadow: 1px -2px 20px #cccccc;
    margin-top: 0.75rem;
}

.dropdown-menu-button {
    background-color: transparent;
    color: black;
    padding: 0.75rem;
    width: 100%;
    border-radius: 0;
}

.dropdown-menu-button:hover {
    background-color: #cccccc;
}