.menu-container {
    position: relative;
    display: inline-block;
}
html {
    scroll-behavior: smooth;
}
.user-btn {
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.user-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    min-width: 344px;
    z-index: 999;
    background-color: #fff;
}

.dropdown-menu a {
    padding: 7px 15px;
    font-size: 20px;
    text-align: right;
    display: block;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f2f2f2;
}

.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
