.dropdown{
    position: relative;
    display: inline-block;
}

.dropdownContent{
    margin-top: 10px;
    display: none;
    position: absolute;
    z-index: 1;
    background-color: white;
    right: 8px;
    min-width: 160px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--grey);
    border-radius: 8px;
    box-shadow:  0px 0px 2px 0px rgb(145, 158, 171, 30%), 
                0px 12px 24px -4px rgb(145, 158, 171, 30%);
}

.dropdownContent a{
    text-decoration: none;
    color: var(--dark-grey);
    padding: 10px 30px 10px 10px;
    width: 80%;
    font-family: inherit;
    font-size: 14px;
    text-align: end;
    transition: text-decoration 1s ease;
}

.dropdownContent a:not(:last-child), .dropdownContent a{
    border-bottom: 1px solid var(--grey);
}
