﻿.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f8f8f8;
    min-width: 200px;
    border: 0.5px solid #3335;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    border-radius: 8px;
    overflow: hidden;
}

    .dropdown-content li {
        list-style: none;
        border-bottom: 1px solid #eee;
        padding: 12px 16px;
    }

        .dropdown-content li:last-child {
            border-bottom: none;
        }

        .dropdown-content li a {
            display: block;
            width: fit-content;
            color: #333;
            text-decoration: none;
            font-family: "Montserrat", regular;
            font-weight: 400;
        }
        .dropdown-content li:hover a {
            border-bottom: 1px solid #333;
        }