.profile-floating-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#profile-menu-btn-unique {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    outline: none;
}

#profile-menu-btn-unique:hover {
    transform: translateY(2px);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

#profile-menu-btn-unique:active {
    transform: translateY(3px) scale(0.98);
}

.profile-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.8);
}

#profile-btn-text {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .profile-floating-container {
        top: 15px;
        right: 15px;
    }

    #profile-menu-btn-unique {
        padding: 8px 12px;
        border-radius: 15px;
    }

    #profile-btn-text {
        font-size: 0.8rem;
        max-width: 80px;
    }

    .profile-btn-icon {
        width: 16px;
        height: 16px;
    }
}