/* header.css */

.dropdown {
    display: none;
    position: absolute;
    background-color: #1f2937; /* Updated: Dark background to match theme (gray-800) */
    box-shadow: 0 8px 16px rgba(0,0,0,0.5); /* Darker shadow for dark theme */
    z-index: 1;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 10px;
    border: 1px solid #374151; /* Added subtle border (gray-700) */
}

.dropdown-content a {
    color: #d1d5db; /* Updated: Light text color for readability (gray-300) */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #374151; /* Updated: Hover color (gray-700) */
    color: #ffffff; /* Brighter text on hover */
}

.has-dropdown:hover .dropdown {
    display: block;
}