.profile-container{
    position:relative;
    display:flex;
    align-items:center;
}

#profileBtn{
    background:none;
    border:none;
    color:#1E293B;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    padding:0;
}

.profile-menu{
    display:none;
    position:absolute;
    top:40px;
    right:0;
    background:white;
    min-width:180px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    z-index:1000;
}

.profile-menu a{
    display:block;
    padding:12px 16px;
    text-decoration:none;
    color:#1E293B;
}

.profile-menu a:hover{
    background:#F1F5F9;
}

.show{
    display:block;
}