
    .dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Hover effect for dropdown */
.dropdown:hover .dropdown-content {
    display: block;
}

