#login-flotante-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
.profile-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.profile-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
}
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: #f5f5f5;
}
.dropdown-menu hr {
    margin: 5px 0;
    border: 0;
    border-top: 1px solid #eee;
}
.show { display: block !important; }
