/* Emergency dropdown fix - add this to ensure visibility */
#user-menu {
    background-color: white !important;
}

#user-menu a {
    color: #374151 !important; /* gray-700 */
}

#user-menu a:hover {
    background-color: #f3f4f6 !important; /* gray-100 */
}

/* Dark mode overrides */
html.dark #user-menu {
    background-color: #1f2937 !important; /* gray-800 */
}

html.dark #user-menu a {
    color: #f3f4f6 !important; /* gray-100 */
}

html.dark #user-menu a:hover {
    background-color: #4b5563 !important; /* gray-600 */
}

/* Ensure dropdown separator is visible */
#user-menu hr {
    border-color: #e5e7eb !important; /* gray-200 */
}

html.dark #user-menu hr {
    border-color: #4b5563 !important; /* gray-600 */
}