/* Dropdown styles */
.dropdown {
    position: relative; /* Position relative to its parent (e.g., the menu bar) */
}

/* Hide dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position below the main link */
    left: 0;
    min-width: 100%; /* Make the dropdown menu as wide as the parent */
    background-color: white;
    z-index: 1; /* Ensure the dropdown is on top of other content */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a shadow */
}

/* Display dropdown menu when hovering over the parent list item */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Style dropdown items */
.dropdown-item {
    padding: 8px 16px;
}

/* Style dropdown links */
.dropdown-item a {
    text-decoration: none;
    color: black;
    display: block; /* Make the link fill the entire item */
    padding: 8px 16px;
}

/* Add hover effect to dropdown links */
.dropdown-item a:hover {
    background-color: #f1f1f1; /* Light gray background on hover */
}
