Adding animations can make the dropdown menu more visually appealing. We can use CSS transitions to achieve a smooth fade-in and fade-out effect.
/* styles.css */
.dropdown-menu {
display: none;
position: absolute;
background-color: #333;
min-width: 160px;
z-index: 1;
opacity: 0;
transition: opacity 0.3s ease;
}
.dropdown-menu.show {
display: block;
opacity: 1;
}