
.user-menu {
    position: relative;
    display: inline-block;
}
.user-dropdown {
    display: none;
    position: absolute;
    background: #5D4037;
    min-width: 150px;
    padding: 5px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    flex-direction: column;
}
.dropdown-btn {
    color:#fafafa;
    width: 100%;
    padding: 6px 0; /* Reduced height */
    border: none;
    background: #5D4037;
    cursor: pointer;
    text-align: center; /* Center text */
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    height: 50px; /* Reduce button height */
}
.dropdown-btn:hover {
    background: #FB8C00;
}
.logout-btn:hover { background: lightcoral; }

.user-menu:hover .user-dropdown {
    display: flex;
}

.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav li {
    display: inline-block;
    position: relative;
}
.nav .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 150px;
    list-style: none;
    padding: 0;
}
.nav .dropdown:hover .dropdown-menu {
    display: block;
}
